我正在使用JSONP,並且我的url(action)正在返回名爲processTemplates的函數。 有什麼辦法可以執行我自己的功能,而不是 processTemplates。執行您自己的JSONP函數
像 _processJSONCallBack
function _processOverideCallBack(actionName) {
$.ajax({
type: 'GET',
url: actionName,
async: false,
contentType: "application/javascript",
jsonpCallback: '_processJSONCallBack',
dataType: "jsonp",
error: function(jqXHR, exception) {
if (jqXHR.status === 0) {
alert('Not connect.\n Verify Network.');
} else if (jqXHR.status == 404) {
alert('Requested page not found. [404]');
} else if (jqXHR.status == 500) {
alert('Internal Server Error [500].');
} else if (exception === 'parsererror') {
alert('Requested JSON parse failed.');
} else if (exception === 'timeout') {
alert('Time out error.');
} else if (exception === 'abort') {
alert('Ajax request aborted.');
} else {
alert('Uncaught Error.\n' + jqXHR.responseText);
}
}
});
};
但是,當我試圖儘自己拋出異常「請求JSON解析失敗。」
請幫我解決這個問題。
甚至當我試圖非同步=真它給了我同樣的錯誤 – user2985842
然而,當我在我的Ajax調用成功嘗試:功能(響應){ \t \t _processJSONCallBack(響應); \t}。神奇的是,它的工作 – user2985842