我遇到了麻烦TryUpdateModel()
.我的表单字段以前缀命名,但我使用 - 作为我的分隔符而不是默认点.
当我尝试更新模型时,它不会更新.如果我更改名称属性,Record.Title
它可以完美地工作,但这不是我想要做的.
bool success = TryUpdateModel(record, "Record");
是否可以使用自定义分隔符?
另外需要注意的是,前缀是帮助反射找到要更新的正确字段.例如,如果我的ViewData有一个自定义类,例如:
public class Customer { public string FirstName {get; set;} public string LastName {get; set;} } public class MyCustomViewData { public Customer Customer {get; set;} public Address Address {get; set;} public string Comment {get; set;} }
我的页面上有一个文本框
<%= Html.TextBox("FirstName", ViewData.Model.Customer.FirstName) %>
要么
<%= Html.TextBox("Customer.FirstName", ViewData.Model.Customer.FirstName) %>
这是有效的
public ActionResult Save (Formcollection form) { MyCustomViewData model = GetModel(); // get our model data TryUpdateModel(model, form); // works for name="Customer.FirstName" only TryUpdateModel(model.Customer, form) // works for name="FirstName" only TryUpdateModel(model.Customer, "Customer", form); // works for name="Customer.FirstName" only TryUpdateModel(model, "Customer", form) // do not work ..snip.. }