例如:
復(fù)制代碼 代碼如下:
context.Response.ContentType = "application/json";
復(fù)制代碼 代碼如下:
context.Response.ContentType = "application/Json";
是否相同呢?
本來運行完全沒有問題的代碼,前臺代碼:
復(fù)制代碼 代碼如下:
$.ajax({ type: "post",
url: urlAjax + "?OperationType=add",
data: $(formId).serialize(),
success: function (msg) {
var obj = jQuery.parseJSON(msg);
if (obj.IsSuccess == true) {
$.messager.alert('提示', obj.Msg,'info',SaveOkCallback);
}
else {
$.messager.alert('提示', obj.Msg);
}
EnableButton(true);
}
});
后臺代碼:
復(fù)制代碼 代碼如下:
context.Response.ContentType = "application/Json";
當(dāng)我把后臺代碼修改成
復(fù)制代碼 代碼如下:
context.Response.ContentType = "application/json";
時,前臺直接報錯了?。∈沁@一句??!
復(fù)制代碼 代碼如下:
jQuery.parseJSON(msg)
沒有IsSuccess屬性?。?!
最終查出來的原因竟然是一個大小寫的問題導(dǎo)致的!!
看來ContentType是區(qū)分大小寫的,但我沒找到相關(guān)資料?。?