例如:
復(fù)制代碼 代碼如下:
context.Response.ContentType = "application/json";
復(fù)制代碼 代碼如下:
context.Response.ContentType = "application/Json";
是否相同呢?
本來(lái)運(yùn)行完全沒(méi)有問(wèn)題的代碼,前臺(tái)代碼:
復(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);
}
});
后臺(tái)代碼:
復(fù)制代碼 代碼如下:
context.Response.ContentType = "application/Json";
當(dāng)我把后臺(tái)代碼修改成
復(fù)制代碼 代碼如下:
context.Response.ContentType = "application/json";
時(shí),前臺(tái)直接報(bào)錯(cuò)了!!是這一句??!
復(fù)制代碼 代碼如下:
jQuery.parseJSON(msg)
沒(méi)有IsSuccess屬性!?。?
最終查出來(lái)的原因竟然是一個(gè)大小寫的問(wèn)題導(dǎo)致的??!
看來(lái)ContentType是區(qū)分大小寫的,但我沒(méi)找到相關(guān)資料??!