ASP.NET MVC剃刀头,并为每一列视图动态(ASP.NET MVC Razor Headers

2019-08-04 05:33发布

我有以下剃刀线现在:

<table border=1 cellpadding=3 cellspacing=1 rules="rows" frame="box">
<tr>
    <th>Türkçe Söz Dizisi</th>
    <th>English Word Sequence</th>
    <th></th>
</tr>

@foreach (var item in Model) {
<tr>
    <td>
        @Html.DisplayFor(modelItem => item.Tr)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.En)
    </td>
    <td>
        @Html.ActionLink((String)@ViewBag.Edit, "Edit", new { id=item.ID }) |
        @Html.ActionLink((String)@ViewBag.Delete, "Delete", new { id=item.ID })
    </td>
</tr>
}

</table>

不过,我会从程序到数据库表中自动添加一些列。 我需要一种方法来打印本次的和TD的相应。 总之,我需要很长的路要走,通过模型的动态列。 我怎样才能做到这一点?

编辑:我的模型类型这里是“建议”。 不过,我想达到Proposal.Type.Word(Tr的,恩,或者任何其他的附加语言枚举)的动态属性。 我怎么能够?

@foreach (var item in Model) {
    Type objectType = Type.GetType(typeof(RexamOneriSistemi.Models.Word).AssemblyQualifiedName);
    System.Reflection.PropertyInfo[] fields = objectType.GetProperties();

<tr>
    <td>@Html.DisplayFor(modelItem => item.ID)</td>
    <td>@Html.DisplayFor(modelItem => item.Owner.Name)</td>
    @foreach (System.Reflection.PropertyInfo f in fields) {
    if (f.Name.ToString() == @HttpContext.Current.Session["Language"].ToString())
    {
        <td>
         // What to do here exactly to get item.Type.Word.[dynamic attribute]?
        </td>
    }
</tr>
}

我可以剃刀字符串

string s = "@Html.Displayfor(modelItem => item.Type.Word." + System.Web.HttpContext.Current.Session["Language"] + ")"

Resulting: @Html.Displayfor(modelItem => item.Type.Word.Tr)

我可以插入到被渲染成剃刀语法的字符串? 如果是的话,怎么样?

Answer 1:

我曾尝试此代码,它的工作原理

 <table border=1 cellpadding=3 cellspacing=1 rules="rows" frame="box">
    <tr>
      @{
        Type objectType = Type.GetType(typeof(yourProjectNamespace.Models.Language).AssemblyQualifiedName);


        System.Reflection.PropertyInfo[] fields = objectType.GetProperties();

         foreach (System.Reflection.PropertyInfo f in fields)
         { 

         <th> @f.Name.ToString() </th>

       }
    }

    </tr>

    @foreach (yourModelType item in Model) {
    <tr>
    foreach (System.Reflection.PropertyInfo f in fields)
         { 

         <td>@Html.Display(f.Name.ToString())</td>

         }
        <td>
            @Html.ActionLink((String)@ViewBag.Edit, "Edit", new { id=item.ID }) |
            @Html.ActionLink((String)@ViewBag.Delete, "Delete", new { id=item.ID })
        </td>
    </tr>
    }
            </table>

为了让您的类的Assemply合格名称,看到这个链接在这里



Answer 2:

跨越这个问题就来了,写了这个也许这将帮助别人。 此代码将你的模型动态加载到一个表。

@model System.Collections.Generic.List<App.Client.Models.MyModel>

<table>
    <thead>
        <tr>
            @foreach (var property in Model.GetType().GetGenericArguments()[0].GetProperties())
            {
                <th>@property.Name</th>
            }
        </tr>   
    </thead>
    <tbody>
        @foreach (var modelItem in Model)
        {
            <tr>
                @foreach (var property in modelItem.GetType().GetProperties())
                {
                    <td>@property.GetValue(modelItem)</td>
                }
            </tr>
        }
    </tbody>
</table>


文章来源: ASP.NET MVC Razor Headers and Views for Each Column Dynamically