我正在尝试发出以下 jQuery AJAX JSONP 请求:
$.ajax({
type: "GET",
url: apiUrl + currentType + "/" + $(this).val() + "/" + nextType + ".json?jsoncallback=?",
dataType: "jsonp",
success: function (data) {
console.log(jQuery.parseJSON(data))
},
error: function (reqObj, textStatus, error) {
console.log(textStatus, error)
}
});
成功函数永远不会运行,这是该error
函数记录的数据:
parsererror, message: "jQuery17205679343591909856_1334681898332 was not called"
我不知道为什么这不起作用...