我想使用模型绑定来让我的控制器看起来更干净,你可以看到使用模型绑定有多好:
public ActionResult Create(Person personToCreate)
{
//Create person here
}
对比
public ActionResult Create(string firstName, string lastName, string address, string phoneNum, string email, string postalCode, string city, string province, string country)
{
//Create person here
}
在进行模型绑定时,我们可以在Html.TextBox("")
jQuery呢?如何确保当我执行$.post(url, data, callback, dataType)
或$.ajax(options)
调用Create(Person personToCreate)
Person 对象时正确填充?