与 HTML 助手混淆 ASP.NET



>我有一个视图模型类

public class NewCustomerViewModel
{
   public IEnumerable<MembershipType> MembershipType { get; set; }
   public Customer Customer { get; set; }
}

我有一个带有New()操作方法的客户控制器:

public ActionResult New()
{
    var membershipTypes = _context.MembershipTypes.ToList();
    var viewModel = new NewCustomerViewModel
    {
        MembershipType = membershipTypes
    };
    return View(viewModel);
}

视图是:

@using (Html.BeginForm("Create", "Customers"))
{ 
    <div class="form-group">
        @Html.LabelFor(e => e.Customer.Name)
        @Html.TextBoxFor(e => e.Customer.Name, new { @class = "form-control" })
    </div>
    <div class="form-group">
        @Html.LabelFor(e => e.Customer.Birthdate)
        @Html.TextBoxFor(e => e.Customer.Birthdate, new { @class = "form-control" })
    </div>
    <div class="checkbox">
        <label>
           @Html.CheckBoxFor(e => e.Customer.IsSubscribedToNewsletter, new { @class = "checkbox" }) Subscribed To Newsletter?
        </label>
    </div>

例如,这是干什么用的?

@Html.TextBoxFor(e => e.Customer.Name, ...)

我们目前只有一个空的客户实例,我们正在尝试获取名称?

我刚才有同样的问题。

虽然你从不实例化Customer,但对象是定义的,引擎能够为它构建你的视图。

在回发时,ModelBinder 将实例化一个新Customer,并尝试从表单值填充它。 Web 是无状态的,因此在构建表单时发送的是预填充的Customer对象还是空对象并不重要,在回发时 ASP.NET 只能从表单中的内容构造它。

相关内容

  • 没有找到相关文章

最新更新