ajax判斷後端返回的資料是否為null
阿新 • • 發佈:2019-01-10
1、後端返回:
return null;
2、ajax需要判斷:
if(null != jsonStr && "" != jsonStr){
具體程式碼:
$.ajax(
{
type: "POST",
data: {
name: name,
code: code
},
dataType: "json",
url: "info",
success: function(jsonStr) {
if(null != jsonStr && "" != jsonStr){
$("#curator_info").html("ok");
} else {
$("#curator_info").html("no");
}
}
}
);