服务器不会接受请求 URL 中的任何参数,因此我需要删除 URL 中的所有额外参数,当然我无法控制服务器。
jQuery:
$.ajax({
type: 'GET',
url: 'http://cross-domain.com/the_jsonp_file,
jsonpCallback: 'jsonCallback',
contentType: 'application/json',
cache: 'true',
dataType: 'jsonp',
success: function(json) {
console.log(json);
},
});
JSONP 文件:
jsonCallback({"test": "hello"});
当我发送该 Ajax 请求时,URL 如下所示:
http://cross-domain.com/the_jsonp_file?callback=jsonCallback
但我需要这个(不带参数):
http://cross-domain.com/the_jsonp_file
编辑:
这是我的整个情况:
function MyClass(imgs) {
// imgs is array of URLs
this.imgs = imgs;
this.submit = function() {
// button click event triggers this method
this._show();
};
this._show = function() {
var _this = this;
for (var i = 0; i < _this.imgs.length; i++) {
(function($, j) {
$.ajax({
type: 'GET',
url: _this.imgs[j],
jsonp : false,
jsonpCallback: 'jsonCallback',
cache: 'true',
dataType:'jsonp',
success: function(json) {
console.log(_this.imgs[j]);
},
});
})(jQuery, i);
};
};
};
我收到了这个错误信息:
Uncaught TypeError: Property 'jsonCallback' of object [object Window] is not a function
奇怪的是很少有请求成功调用 jsonCallback。