templates – 嵌套的@ Html.DisplayFor(model => baseClass,“BaseClass”),用于不渲染基类模板

前端之家收集整理的这篇文章主要介绍了templates – 嵌套的@ Html.DisplayFor(model => baseClass,“BaseClass”),用于不渲染基类模板前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
几个子类(例如,Cheese)共享从基类(Product)派生的公共属性,其属性如SKU,Name和Description.

为了避免在渲染显示/编辑器模板时出现重复,我希望每个子类模板(Cheese.cshtml)在其共享公共基类模板(Product.cshtml)下面呈现其唯一字段.

但是,从派生类转换为基类(Product)cheese并尝试在子类模板中显示其模板没有任何效果.

DisplayTemplate文件结构:

.\Views\Shared\DisplayTemplates
    .\Product.cshtml -- renders common base class fields
    .\Cheese.cshtml -- renders unique class fields and calls Product.cshtml

Cheese.chtml:

@model Application.Data.Models.Cheese

@{
    var product = (Application.Data.Models.Part)Model;
}

Base Product Fields:
@Html.DisplayFor(x => products,"Product") @* no effect! *@

<div class="field">
    <div class="display-label">@Html.LabelFor(m => Model.UniqueProperty)</div>
    <div class="display-field">@Html.DisplayFor(m => Model.UniqueProperty)</div>
</div>

转换到基类并呈现Product.cshtml模板可以从View中正常工作,但不能在子类模板中工作.

如何从子类模板中为基类渲染公共模板?

解决方法

找到解决方

@ Html.DisplayFor(…)cannot be nested,所以你必须在派生模板中使用@ Html.Partial,如下所示:

@Html.Partial("~/Views/Shared/DisplayTemplates/Product.cshtml",product) %>

或者,如果您的文件结构允许,则更简洁的路径:

@Html.Partial("DisplayTemplates/Product",product)
原文链接:https://www.f2er.com/html/226849.html

猜你在找的HTML相关文章