我正在进行Ajax调用。
我在我的c#代码中设置了一个断点,我在jquery中使用ajax api查询来调用它。
c#代码没有错误,但我的错误处理程序是在jquery / ajax代码中引发的。
我的剧本:
root
它在我的div中填充'服务器错误'?
我的代码背后:
$.ajax({
type: "GET",
crossDomain: true,
dataType: 'jsonp',
url: "https://my cross domain/api/Login",
data: LogIn,
success: function (data) {
$("#divError").html(data);
},
error: function(jqXHR, textStatus, errorThrown) {
>> callback comes here
$("#divError").html('Server Error');
}
});