我想从我的控制器返回一个 EditorTemplate 作为部分视图。
我目前正在做:
public ActionResult Create([Bind(Prefix="Create")]CreateViewModel model)
{
return PartialView("~/Views/Shared/EditorTemplates/Template.cshtml", model);
}
问题是,在我这样做之后,Create_
前缀就离开了我的视野。有没有办法将编辑器模板作为部分视图返回并保留前缀?
Index.cshtml @model IndexViewModel
@using(Html.BeginForm("Create"))
{
@Html.EditorFor(m => m.Create, "Template")
<input type="submit" value="Save" />
}
我正在通过 AJAX 调用提交此表单。当我最初调用 EditorFor 时,所有字段的前缀都是Create_
. 但是,在我提交表单并返回此 PartialView 后,前缀丢失了。