5
我想使用模型綁定,以保持我的控制器尋找更清潔,你可以看到它是如何好得多使用模型綁定:怎麼辦模型使用jQuery阿賈克斯綁定
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的正確的名稱?我如何確保在執行$.post(url, data, callback, dataType)
或$.ajax(options)
呼叫Create(Person personToCreate)
時Person對象被正確填充?
解決這個問題的唯一方法是自定義模型綁定器? – Matt 2009-07-13 20:49:23