asp.net-mvc-3 – 使用Html.EditorFor为新记录创建空白

前端之家收集整理的这篇文章主要介绍了asp.net-mvc-3 – 使用Html.EditorFor为新记录创建空白前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用EditorFor模板是ASP.Net MVC 3的一个非常好的功能,但是有可能让EditorFor呈现一个未填充的模板以允许创建记录吗?

或者还有其他方法可以做到这一点吗?

我试图这样做的方式如下:

@Html.EditorFor(model => model)
    @Html.EditorFor(x => new List<Business.viewmodel.Affiliate.Contact>())
    @Html.EditorFor(new List<Business.viewmodel.Affiliate.Contact>())
    @Html.EditorFor(new Business.viewmodel.Affiliate.Contact())

第一个显然有效,但随后的(显示我正在尝试做的)都会失败并出现以下错误

Templates can be used only with field access,property access,single-dimension array index,or single-parameter custom indexer expressions.

有问题的模型是:

IEnumerable<Business.viewmodel.Affiliate.Contact>

解决方法

控制器负责准备将传递给视图的视图模型.因此,如果您需要以5个空联系人行初始化视图模型,则只需在控制器中执行此操作:
public ActionResult Index()
{
    var model = new Myviewmodel
    {
        // Add 5 empty contacts
        Contacts = Enumerable.Range(1,5).Select(x => new Contact()).ToList()
    };
    return View(model);
}

并在您的视图中像往常一样使用EditorFor助手:

@model Myviewmodel
...
@Html.EditorFor(x => x.Contacts)

这将为我们添加到Contacts集合中的5个元素中的每个元素呈现相应的编辑器模板.

原文链接:https://www.f2er.com/aspnet/248123.html

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