次のjQueryAJAXJSONPリクエストを作成しようとしています。
$.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"
なぜこれが機能しないのかわかりません...