2

我正在使用 Yahoo BOSS 和 Bing API 为我的网站提供搜索功能。具体来说,我使用他们的 JSON 响应格式,将回调函数传递给搜索提供程序,稍后将与搜索结果一起回调。我的回调函数实际上被调用了,但问题是,如果我一次发出多个请求,我无法判断某个响应是针对哪个请求的。为此,有没有办法通过回调函数将附加参数传递给搜索提供程序,以便我以后可以使用它来识别哪个响应与哪个请求一起使用?谢谢

4

1 回答 1

1

我和你有同样的问题!我用谷歌搜索并找到了一些解决方案,我已经解决了我的问题。现在我把它展示给你,我希望它可以帮助你:)

以前的代码:

       function MakeGeocodeRequest(credentials) {
        var pins = checkLocation.d
        $.each(pins, function (index, pin) {
            var geocodeRequest = 'http://ecn.dev.virtualearth.net/REST/v1/Locations/' + pin.City + ',' + pin.Country + '?output=json&jsonp=GeocodeCallback&key=' + credentials;
            CallRestService(geocodeRequest);
        });



    function CallRestService(request) {
        var script = document.createElement("script");
        script.setAttribute("type", "text/javascript");
        script.setAttribute("src", request);
        document.body.appendChild(script);
    }

function GeocodeCallback(result) {.. 与结果回调有关,--> 我想在这里添加一些 pin 信息}

因为每个 sccipt 添加到文档( document.body.appendChild(script);) 时都会运行 --> 和回调,所以您不能添加更多参数。

我通过 ajax 请求解决它(不再添加到文档中),当 ajax 调用成功时 --> 我调用 GeocodeCallback(result, pin ) 这是完整的代码。

   function MakeGeocodeRequest(credentials) {
        var pins = checkLocation.d;
        $.each(pins, function (index, pin) {
            $.ajax({
                url:"http://ecn.dev.virtualearth.net/REST/v1/Locations/",
                dataType: "jsonp",
                data:{key:credentials,q:pin.City + ',' + pin.Country},
                jsonp:"jsonp",
                success: function(result){
                    GeocodeCallback(result,pin);
                }
            });
        });
    }
    function GeocodeCallback(result,pin) { ... to do here}
于 2012-01-11T09:10:54.697 回答