asp.net-mvc – ASP.NET MVC:访问集合中项目的ModelMetadata

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – ASP.NET MVC:访问集合中项目的ModelMetadata前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试为Index视图编写一个自动脚手架.我希望能够传递模型或视图模型的集合(例如,IEnumerable< Myviewmodel>)并返回一个 HTML表,该表使用标题属性(th元素)和 Html.Display(propertyName)的DisplayName属性)对于细胞(td元素).每行应对应于集合中的一个项目.

当我只显示单个记录时,如在详细信息视图中,我使用ViewData.ModelMetadata.Properties来获取给定模型的属性列表.但是当我传递给视图的模型是模型或视图模型对象的集合而不是模型或视图模型本身时会发生什么?

如何获取集合中特定项目的ModelMetadata?

解决方法

一个简单的扩展方法可以完成这项工作:
public static class MyExtensions
{
    public static ModelMetadata GetMetadata<TModel>(this TModel model)
    {
        return ModelMetadataProviders.Current.GetMetadataForType(null,typeof(TModel));
    }
}

在你看来:

<%@ Page 
    Language="C#"
    Inherits="System.Web.Mvc.ViewPage<System.Collections.Generic.IEnumerable<Myviewmodel>>" %>

<%-- Get Metadata for the first item in the model collection --%>
<%= Html.Encode(Model.ElementAt(0).GetMetadata().ModelType) %>
原文链接:https://www.f2er.com/aspnet/247303.html

猜你在找的asp.Net相关文章