我有一个应用程序可以向C#HttpHandler发出ajax jsonp请求。
function RequestData() {
var parameters = 'value1=' + value + '&value2=' + value2;
$.ajax({
type: "GET",
url: 'https://localhost:44300/checkvalues?' + parameters,
dataType: "jsonp",
headers: { "cache-control": "no-cache" },
success: function (msg) {
alert('all good')
},
error: function (jqXHR, exception) {
alert(jqXHR.status);
}
});
这是一些服务器端代码。
if (OK)
{
response.ContentEncoding = System.Text.Encoding.UTF8;
response.ContentType = "application/javascript";
response.Write(callback + "({ data: 'allOK' });");
}
else
{
//error
response.StatusCode = 500;
response.SuppressFormsAuthenticationRedirect = true;
response.StatusDescription = "error";
response.End();
}
当OK为真时,没有问题。 ajax成功函数按预期调用。但是我将响应状态代码设置为例如500触发ajax请求的错误部分,从未收到服务器响应 - 没有任何反应。
如何修改我的响应代码以输入ajax错误部分?
我可以通过更改响应来触发解析错误,但我希望使用Http状态代码来执行此操作。
答案 0 :(得分:1)
您可以检测到JSONp错误。我不确定为什么jQuery选择不这样做。
这是一个不使用jQuery的JSONp实现。您可能需要稍微修改一下才能使其正常工作。例如,我不确定jQuery如何传达callback_name
。
function jsonp(success_callback, error_callback) {
var script, callback_name;
var parameters = 'value1=' + value + '&value2=' + value2;
callback_name = "generate random name";
function after() {
setTimeout(function () {
document.getElementsByTagName("head")[0].removeChild(script);
}, 1);
}
script = document.createElement('script');
window[callback_name] = function (response) {
after();
success_callback(response);
};
script.type = 'text/javascript';
script.src = "https://localhost:44300/checkvalues?" + parameters + "&callback=" + callback_name;
script.async = true;
script.addEventListener('error', function () {
after();
error_callback();
});
document.getElementsByTagName("head")[0].appendChild(script);
}
jsonp(function () {
alert("success");
}, function () {
alert("failure");
});