1

在我的一个类型为 的强类型视图中ProfileModel,我为另一种类型调用了一个编辑器:

@model MVC3App.WebUI.Models.ProfileModel

<div class="contact-form">
    @Html.EditorFor(x => x.ContactModel)
</div>

我有这个简单的模型:

public class ContactModel
{
    [Required]
    [Display(Name = "Name:")]
    public string Name { get; set; }

    [Required]
    [Display(Name = "Email:")]
    public string Email { get; set; }

    [Required]
    [Display(Name = "Message:")]
    public string Message { get; set; }
}

这就是我在 EditorTemplate 视图中ContactModel用来显示文本框的内容:

@model MVC3App.WebUI.Models.ContactModel

@Html.TextBoxFor(model => model.Name, new { placeholder = "* Name" })

生成的 HTML:

<input data-val="true" 
       data-val-required="The field Name: is required." 
       id="ContactModel_Name" 
       name="ContactModel.Name" 
       placeholder="* Name" type="text" value="">

当 POST 回服务器时,该值未绑定到模型属性。

[HttpPost]
public ActionResult SendPatientContact(ContactModel model)
{
    if (ModelState.IsValid)
    {
        // model.Name is null. :S

        return RedirectToAction("ThankYou");
    }

    return RedirectToAction("ThankYou");
}

如果我手动将name文本框的 设置为name="Name",则该值将正确绑定到模型属性。有什么建议么?

4

1 回答 1

1

在您的情况下,您不应使用@Html.EditorFor方法,而应使用@{Html.RenderPartial("_ContactPartialView", Model.ContactModel);}

于 2012-12-11T22:10:03.690 回答