我想使用模型绑定来保持我的控制器看起来更干净,你可以看到使用模型绑定有多好:
public ActionResult Create(Person personToCreate)
{
//Create person here
}
VS
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?当我对Create(Person personToCreate)执行$.post(url,data,callback,dataType)或$.ajax(options)调用时,我是如何确保Person对象被正确填充的?
最佳答案
原文链接:https://www.f2er.com/jquery/427830.html