zoukankan      html  css  js  c++  java
  • ASP.NET MVC 表单提交多层子级实体集合数据到控制器中

    ASP.NET MVC 表单提交多层子级实体集合数据到控制器中

    导航属性 类型设置为ICollection 时

     public virtual ICollection<DepartmentDetail> DepartmentDetails { get; set; }

      @for (var i = 0; i < Model.DepartmentDetails.Count(); i++)
                        {
     
                    <div class="form-group">
                        @Html.HiddenFor(model => model.DepartmentDetails.ToList()[i].Id)
                        @Html.HiddenFor(model => model.DepartmentDetails.ToList()[i].DepartmentId)
                        @Html.LabelFor(model => model.DepartmentDetails.ToList()[i].Population, htmlAttributes: new { @class = "control-label col-xs-2" })
                        <div class="col-xs-4">
                            @Html.EditorExtFor(model => model.DepartmentDetails.ToList()[i].Population, new { htmlAttributes = new { @class = "form-control" } })
                        </div>
                        @Html.LabelFor(model => model.DepartmentDetails.ToList()[i].BuildingsCount, htmlAttributes: new { @class = "control-label col-xs-2" })
                        <div class="col-xs-4">
                            @Html.EditorExtFor(model => model.DepartmentDetails.ToList()[i].BuildingsCount, new { htmlAttributes = new { @class = "form-control" } })
                        </div>
                    </div>
    }

    后台将取不到

    导航属性类型应设为IList

     <div class="form-group">
                                @Html.HiddenFor(model => model.DepartmentDetails[i].Id)
                                @Html.HiddenFor(model => model.DepartmentDetails[i].DepartmentId)
                                @Html.LabelFor(model => model.DepartmentDetails[i].Population, htmlAttributes: new { @class = "control-label col-xs-2" })
                                <div class="col-xs-4">
                                    @Html.EditorFor(model => model.DepartmentDetails[i].Population, new { htmlAttributes = new { @class = "form-control" } })
                                </div>
                                @Html.LabelFor(model => model.DepartmentDetails[i].BuildingsCount, htmlAttributes: new { @class = "control-label col-xs-2" })
                                <div class="col-xs-4">
                                    @Html.EditorFor(model => model.DepartmentDetails[i].BuildingsCount, new { htmlAttributes = new { @class = "form-control" } })
                                </div>
                            </div>
  • 相关阅读:
    IPC机制key值的各位组成
    ctrl+c,ctrl+d,ctrl+z在linux中意义
    Linux x86_64与i386区别之 —— 内存寻址
    readdir_r()读取目录内容
    memmove和memcpy
    sscanf的应用
    获取CPU频率
    盘点十个超级实用的 JS 特性
    Java 类在 Tomcat 中是如何加载的?
    Java 类在 Tomcat 中是如何加载的?
  • 原文地址:https://www.cnblogs.com/cxxtreasure/p/13401577.html
Copyright © 2011-2022 走看看