我有以下模型:
public class Car
{
public int Id { get; set; }
public string Colour { get; set; }
public Category Category { get; set; }
}
public class Category
{
public int CatId { get; set; }
public string Name { get; set; }
}
我正在返回模型以查看如下:
public ActionResult Index()
{
var car = new Car { Id = 1, Colour = "Black", Category = new Category { CatId = 2, Name = "Audi" } };
return View(car);
}
我的观点是:
@model MvcApplication6.Models.Car
@{
ViewBag.Title = "Car";
}
@Html.DisplayForModel()
这不显示类别。我发现这是 MVC 中的一个错误,作为一种解决方法,我需要覆盖 Object.ascx 显示模板。
所以我在 Views/Shared/DisplayTemplates/ 文件夹中添加了 object.cshtml,代码如下。
@functions{
public bool ShouldShow(ModelMetadata metadata)
{
//return number % 2 == 0 ? true : false;
return metadata.ShowForDisplay
&& metadata.ModelType != typeof(System.Data.EntityState)
&& !metadata.IsComplexType
&& !ViewData.TemplateInfo.Visited(metadata);
}
}
@if (Model == null) {
@(ViewData.ModelMetadata.NullDisplayText)
} else if (ViewData.TemplateInfo.TemplateDepth > 1) {
@(ViewData.ModelMetadata.SimpleDisplayText)
} else {
foreach (var prop in ViewData.ModelMetadata.Properties.Where(pm => ShouldShow(pm))) {
if (prop.HideSurroundingHtml) {
@(Html.Display(prop.PropertyName))
} else {
if (!String.IsNullOrEmpty(prop.GetDisplayName())) {
<div class="display-label">@(prop.GetDisplayName())</div>
}
<div class="display-field">@(Html.Display(prop.PropertyName))</div>
}
}
}
但是仍然没有显示类别,有人可以建议吗?