这是我的 jQuery ajax 代码
$.ajax({
type: "GET",
url: "http://example.com/request=r",
dataType: "json",
processData: true,
data: {},
success: function (responseString) {
alert(responseString);
},
error: function (xhr, errorType, exception) {
var errorMessage = exception || xhr.statusText;
alert("Excep:: "+exception +"Status:: "+xhr.statusText);
}
});
我没有得到异常,但我得到 xhr.statusText 作为Error