c# – 在foreach-loop中创建许多DropDownListFor

前端之家收集整理的这篇文章主要介绍了c# – 在foreach-loop中创建许多DropDownListFor前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > DropDownListFor does not select value if in for loop6个
> How to set default value to select list in MVC during run time2个
我想从List中动态创建DropDownLists,它提供SelectList和一个保存选择的字段.
public class viewmodel
{
    public List<Material_Select> materialSelect { get; set; }
}

public class Material_Select
{
    public SelectList selectList { get; set; }
    public int MaterialId { get; set; }
}

在视图中,我想循环遍历materialSelect List并动态创建DropDownLists.

像这样的东西:

int count = 0;
foreach (var item in Model.materialSelect)
{
    count++;
    <div class="editor-label">
        @Html.LabelFor(model => model.materialSelect)
    </div>
    <div class="editor-field">
        @Html.DropDownListFor(item.MaterialId,item.selectList)
    </div>       
}

在HttpPost ActionResult我需要获取选定的值.有谁知道如何解决这个问题?

解决方法

你可能应该使用 EditorTemplates.这些允许你疯狂地做你所描述的.如果在〜/ Views / Shared / EditorTemplates / Material_Select.cshtml中创建强类型的局部视图(视图必须与模型命名相同),如下所示:
@model Material_Select

<div class="editor-label">
    @Html.LabelFor(m => m.MaterialId)
</div>
<div class="editor-field">
    @Html.DropDownListFor(m => m.MaterialId,Model.selectList)
</div>

然后在您的整体表格中,您可以致电:

@Html.EditorFor(m => m.materialSelect)

这将自动枚举您的集合并为集合中的每个项目呈现编辑器模板.

原文链接:https://www.f2er.com/csharp/96795.html

猜你在找的C#相关文章