這是我的功能。如何在Asp.Net中將匿名類型返回爲json MVC
function reqQuoteFile(_url) {
$.ajax({
type: "GET",
url: _url,
dataType: "json",
success: function (data) {
if(data["itemsNotSupportedWarning"] != '')
{
alert(data["itemsNotSupportedWarning"]);
//more code...
}
}
});
}
它調用這個動作
public ActionResult ExportQuote(string projectNumber)
{
//more code here...
return Json(new
{ quoteFileName = _quoteFileName,
itemsNotSupportedWarning = _itemsNotSupportedWarning
});
}
_quoteFileName和_itemsNotSupportedWarning都是字符串。
當我在調試模式下運行代碼時,ajax正在調用該操作。但是,執行操作後,警報彈出窗口不顯示。
感謝您的幫助。