关于.net:从Controller中将EditorTemplate作为局部视图返回

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);
}

问题是,在我这样做之后,Create_前缀远离了我的观点。 有没有办法将编辑器模板作为局部视图返回并保留前缀?

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时,所有字段都有Create_的前缀。 但是,在我提交表单并返回此PartialView后,前缀将丢失。


由于模板未在主视图的上下文中调用,因此会丢失其上下文。 您可以在这种情况下定义前缀,如下所示:

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);
}