有人可以告诉我如何确保以下代码仅在msg
不为空时返回成功。
success
即使msg.Text
未定义,它有时也会触发该函数。
$.ajax({
async: true,
url: url,
type: "GET",
data: params,
success: function (msg) {
if (msg.Text != undefined) {
$('#mediumText').val(msg.Text).blur();
} else {
console.log("failed to load");
return false;
}
}
});