如果我有来自 C# 方法的空结果,我应该使用什么。
jQuery.ajax({
type: "POST",
url: "Me.aspx/Load",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {
alert(msg.d);
}
});
为空时不提醒。
我努力了:
msg.length===0
和
error:
但无法使其工作。
谢谢你。