调用web api 2 app的javascript代码,
$.when(
$.ajax({
type: 'get',
url: "some/url",
dataType: 'json',
async: true
}),
$.ajax({
type: 'get',
url: "some/url",
dataType: 'json',
crossDomain: true
})
).then((data, data2) => {...
错误消息:500(内部服务器错误)
如果我将ajax请求嵌套在先前的请求成功回调中,它会再次开始工作,这让我相信IIS/Web Api 2
不喜欢多个并发请求?
有效的代码,
$.ajax({
type: 'get',
url: "some/url",
dataType: 'json',
async: true,
success: function () {
$.ajax({
type: 'get',
url: "some/url",
dataType: 'json',
crossDomain: true,
success: function() {...}
})
}
})