0
通過發佈到MVC控制器發送多個數據時出現問題 無論我通過發送的哪一步它都沒有被控制器接收,默認爲1,但它仍然會正確發送表單。如何發佈表單和字符串到MVC 4控制器
public class SetupP{
public string fn {get;set;}
etc...
}
public ActionResult Start(int step = 1, Setup SetupP = null){
if(step == 1)
if(step ==2)
}
$.post("/setup/Start", { step: 2, SetupP: $('#SetupForm').serialize() }
非常有幫助! – ArcSet