Returning an EditorTemplate as a Partial View from a Controller
我想从我的控制器返回一个EditorTemplate作为Partial View。
我目前在做:
1 2 3 4 | public ActionResult Create([Bind(Prefix="Create")]CreateViewModel model) { return PartialView("~/Views/Shared/EditorTemplates/Template.cshtml", model); } |
问题是,在我这样做之后,
Index.cshtml
@model IndexViewModel
1 2 3 4 5 6 | @using(Html.BeginForm("Create")) { @Html.EditorFor(m => m.Create,"Template") <input type="submit" value="Save" /> } |
我正在通过AJAX调用提交此表单。 当我最初调用EditorFor时,所有字段都有
由于模板未在主视图的上下文中调用,因此会丢失其上下文。 您可以在这种情况下定义前缀,如下所示:
1 2 3 4 5 | public ActionResult Create([Bind(Prefix="Create")]CreateViewModel model) { ViewData.TemplateInfo.HtmlFieldPrefix ="Create"; return PartialView("~/Views/Shared/EditorTemplates/Template.cshtml", model); } |