8

服务器不会接受请求 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。

4

3 回答 3

11

检查 jQuery 文档 - 他们说 jsonp: false 和 jsonpCallback : 'callbackFunction' 在 ajax args ......就像:

$.ajax({
    url: 'http://cross-domain.com/the_jsonp_file',
    jsonp : false,
    jsonpCallback: 'jsonCallback',
    // contentType: 'application/json', -- you can't set content type for a <script> tag, this option does nothing for jsonp | KevinB
    cache: 'true',
    dataType : 'jsonp'
});

http://api.jquery.com/jQuery.ajax/

于 2012-10-12T17:28:18.600 回答
1

每个请求都调用相同的回调jsonCallback,所以我认为这就是问题所在。

首先,文档中的 Javascript:

<script type="text/javascript">
    new Gallery([
        ['http://cross-domain.url/whatever', '27b2afa5c77c2510'],
        ['http://cross-domain.url/whatever', '13df51b2f2801bc1'],
        ['http://cross-domain.url/whatever', '4de326fc9a2c5a24'],
        ['http://cross-domain.url/whatever', '60c266a73ba699bc'],
        ['http://cross-domain.url/whatever', '3db01e95aaf2b9f2'],
        ['http://cross-domain.url/whatever', '94eb17f9b0e1be9c'],
        ['http://cross-domain.url/whatever', 'ca8c5c3c0b8cd5ae'],
        ['http://cross-domain.url/whatever', '6b0f5c5737ee88fd'],
        ['http://cross-domain.url/whatever', '318d8ebb51a97a15'],
        ['http://cross-domain.url/whatever', 'f5028c8b62e81a8b'],
    ]);
</script>

客户端将 JSONP 文件(只是另一个 Javascript 文件)上传到服务器,如下所示:

jsonCallback_27b2afa5c77c2510({"test": "hello"});

之后添加随机十六进制字符串jsonCallback_来分隔每个请求,就像 jQuery 的默认回调一样。

从输入中读取随机十六进制字符串并设置为jsonpCallback

function Gallery(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][0],
                    jsonp : false,
                    jsonpCallback: 'jsonCallback_' + _this.imgs[j][1],
                    cache: 'true',
                    dataType:'jsonp',
                    success: function(json) {
                      // Process
                      console.log(json.test);
                    },
                });
            })(jQuery, i);
        };
    };
};

谢谢@Adam @Kevin B @Dcullen 和大家!:D

ps:我输入了上面的每个来源,例如,它可能不正确。

于 2012-10-12T19:24:37.140 回答
0

JSONP 需要回调作为 URL 的一部分。我会根据您正在访问的服务器不支持 JSONP 的描述猜测。

jQuery 向您的文档添加一个脚本标签,添加该标签后会运行 API 请求,响应会调用您代码中的回调函数(这是为了简化它)。

如果您想要更准确的描述,可以查看 Wikipedia。 http://en.wikipedia.org/wiki/JSONP#How_it_works

于 2012-10-12T17:42:55.343 回答