34

我目前正在尝试发布一个由两个强类型视图组成的表单。这个问题很相似,但没有答案:

MVC 3 Razor 表单发布,带多个强类型的部分视图不绑定

当我提交表单时,提交给控制器的模型始终为空。我花了几个小时试图让它工作。这似乎应该很简单。我在这里错过了什么吗?我不需要做 ajax 只需要能够发布到控制器并呈现一个新页面。

谢谢

这是我的视图代码:

<div>
    @using (Html.BeginForm("TransactionReport", "Reports", FormMethod.Post, new {id="report_request"}))
    {
        ViewContext.FormContext.ValidationSummaryId = "valSumId";
        @Html.ValidationSummary(false, "Please fix these error(s) and try again.", new Dictionary<string, object> { { "id", "valSumId" } });
        @Html.Partial("_ReportOptions", Model.ReportOptions);
        @Html.Partial("_TransactionSearchFields", new ViewDataDictionary(viewData) { Model = Model.SearchCriteria });
    }

这是控制器中的代码:

[AcceptVerbs(HttpVerbs.Post)]
public ActionResult TransactionReport(TransactionReportRequest reportRequest)
{
    var reportInfo = new List<TransactionReportItem>();

    if (ModelState.IsValid)
    {
        var reportData = _reportDataService.GetReportData(Search.MapToDomainSearchCriteria(reportRequest.SearchCriteria));
        if (reportData!=null)
        {
            reportInfo = reportData.ToList();
        }
        return View(reportInfo);
    }
    return View(reportInfo);
}

部分视图本身是无关紧要的,因为他们所做的只是投标和展示他们的模型。

4

5 回答 5

56

部分不是这里的方式。您正在寻找 EditorTemplates,这些都是为您想要的。在这种情况下,您的属性将很好地绑定到您的模型(您将提交)。

您的主视图将具有这种形式(请注意,您只需要使用EditorFor而不是Partial;在这种情况下,您可能需要将该 viewData 参数放在 ViewBag 左右):

@using (Html.BeginForm("TransactionReport", "Reports", FormMethod.Post, new {id="report_request"}))
{
    ViewContext.FormContext.ValidationSummaryId = "valSumId";
    @Html.ValidationSummary(false, "Please fix these error(s) and try again.", new Dictionary<string, object> { { "id", "valSumId" } });
    @Html.EditorFor(model => model.ReportOptions);
    @Html.EditorFor(model = Model.SearchCriteria });
}

现在您只需将您的部分拖到文件夹~/Shared/EditorTemplates/并重命名它们以匹配它们作为编辑器模板的模型名称。

~/Shared/EditorTemplates/文件夹中,创建一个新的“视图”,例如“SearchCriteria.cshtml”。在里面,将您要为其创建编辑器模板的类的类型作为“模型”。示例(示例类具有属性NameOtherCriteria):

@model MyNamespace.SearchCriteria
<ul>
    <!-- Note that I also use EditorFor for the properties; this way you can "nest" editor templates or create custom editor templates for system types (like DateTime or String or ...). -->
    <li>@Html.LabelFor(m => m.Name): @Html.EditorFor(m => m.Name)</li>
    <li>@Html.LabelFor(m => OtherCriteria): @Html.EditorFor(m => m.OtherCriteria</li>
</ul>

一些关于它们的好读物:

于 2012-05-15T21:02:35.723 回答
13

您应该在 PartialView 的字段中添加前缀。这将使绑定数据正确。

所以与其:

@Html.Partial("_ReportOptions", Model.ReportOptions);

采用:

@Html.Partial("_ReportOptions", Model.ReportOptions, new ViewDataDictionary { TemplateInfo = new TemplateInfo { HtmlFieldPrefix = "ReportOptions" }})
于 2015-03-19T14:57:58.110 回答
10

我同意@Styxxy 和@Tony,编辑器模板是更好的解决方案。但是,您的问题是您将子模型提供给部分视图。因此,当局部视图呈现时,它不知道它是更大模型的一部分,也不会生成正确的名称属性。

如果您坚持使用部分而不是编辑器模板,那么我建议只将模型传递给部分,然后让每个部分执行 Model.Whatever.Foo ,它将生成正确的名称属性以进行绑定。

于 2012-05-15T21:10:56.457 回答
4

尝试使用 EditorTemplates 而不是 Partials http://coding-in.net/asp-net-mvc-3-how-to-use-editortemplates/

于 2012-05-15T21:06:07.337 回答
2
@Html.Partial("_ReportOptions", Model.Contact, new ViewDataDictionary()
           {
               TemplateInfo = new TemplateInfo()
                   {
                       HtmlFieldPrefix = "Contact"
                   }
           })

)


@Html.Partial("_TransactionSearchFields", Model.SearchCriteria, new  
 ViewDataDictionary()
           {
               TemplateInfo = new TemplateInfo()
                   {
                       HtmlFieldPrefix = "SearchCriteria"
                   }
           })
于 2015-09-15T05:39:10.973 回答