如果我有一个带有部分文件的模型
[MetadataType(typeof(ClassAMetadata))]
public partial class ClassA: IStructualObject
{
}
public class ClassAMetadata
{
[DisplayName("Var B:")]
public object VarB { get; set; }
}
Var B是一个DateTime!
然后我有一个ViewModel(ClassAViewwModel)用于使用ClassA的控制器,在这个ViewModel I ClassA中它还有一个VarB的DateTimeViewModel,原因是在我的应用程序中DateTime显示为3个字段Date,Hour和分钟。
然后我为我的DateTimeViewModel创建了一个模板。见代码:
@model ViewModels.DateTimeViewModel
<div >
<span class="editor-label">
@Html.LabelFor(m => m)
</span>
<span class="editor-field">
@Html.TextBoxFor(m => m.Date, new { id = "participating_airborne_@ViewData_" + ViewData["cssname"] + "_resource_date", @class="datepicker dato", maxlength="10"})
</span>
<span class="editor-field">
@Html.TextBoxFor(m => m.Hour, new { id = "participating_airborne_" + ViewData["cssname"] + "_resource_hours", @class = "time", maxlength = "2" })
</span>:<span class="editor-field">
@Html.TextBoxFor(m => m.Minute, new { id = "participating_airborne_" + ViewData["cssname"] + "_resource_minutes", @class = "time", maxlength = "2" })
</span>
<span>
@Html.ValidationMessageFor(m => m.Date)
@Html.ValidationMessageFor(m => m.Hour)
@Html.ValidationMessageFor(m => m.Minute)
</span>
</div>
我当时想要的是以某种方式从我的VarB中获取DisplayName,以便在我的DateTimeViewModel(或类似的东西)上执行@ Html.LabelFor(m =&gt; m)时显示,所以我需要一种方法来读取Partial信息,这可能吗?
答案 0 :(得分:1)
您应该能够从模型元数据中获取当前模型的显示名称,如下所示:
ViewData.ModelMetadata.GetDisplayName()
修改强>
如果您有视图模型:
public class ClassA
{
[DisplayName("Var B:")]
public DateTimeViewModel VarB { get; set; }
}
然后在ClassA视图中,您将呈现该属性,如:
@Html.EditorFor(x => x.VarB)
然后它应该使用您的DateTimeViewModel模板,并能够从模型元数据中提取显示名称。