下面的函數成功將數據發送到Controller.cs(服務器)
var ajaxResponse = $.ajax({
type: "post",
url: href,
dataType: 'json',
contentType: "application/json; charset=utf-8",
data: JSON.stringify(postData),
success: function (msg) {
alert("Success");
}
})
但我不能夠從下面的方法獲取更新狀態
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult SaveData(TabMasterViewModel postData)
{
string message = "";
try
{
TabMasterViewModel update = new TabMasterViewModel();
update = _tabmasterService.GetSingle(r => r.colID == postData.colID);
UpdateModel(update);
_tabmasterService.Update(update);
message = "Success";
}
catch (Exception e)
{
message = e.Message;
}
return Content(message);
}
竟被我d喜歡在失敗或成功時顯示消息。這下面的行不會執行
success: function (msg) {
alert("Success");
}
但我的服務器端代碼沒有任何錯誤執行。
請提供您寶貴的建議,
謝謝
Imdadhusen
好的答案,我的投票+ – imdadhusen