0

我有以下脚本可以正常工作:

url = 'http://external_source/feed_1.xml';

$.ajax({
    type: "GET",
    url: document.location.protocol + '//ajax.googleapis.com/ajax/services/feed/load?v=1.0&num=1000&callback=?&q=' + encodeURIComponent(url),
    dataType: 'json',
    success: function(data) {
        values = data.responseData.feed.entries;
        if (values[0]) {
            for (i = 0; i <= values.length - 1; i++) {
                document.write(values[i].title);
                document.write(values[i].publishedDate);
            }
        }
    }
});

我现在有第二个提要,即url = 'http://external_source/feed_2.xml';,我需要合并两个提要。我知道我可以重复上述过程并在 feed_2 上方显示 feed_1,但我需要合并两个提要并按publishedDate.

我该怎么做呢?两个提要的结构完全相同,只是在titlepublishedDate

4

1 回答 1

2

由于您使用的是 jQuery,因此您可以使用jQuery.when. 该页面底部的示例向您展示了在多个异步方法完成后如何回调。

由于您将返回两个数据,因此您可以连接数组并在之后对它们进行排序:

$.when( $.ajax( "/page1.json" ), $.ajax( "/page2.json" ) ).done(function( a1, a2 ) {
  // a1 and a2 are arguments resolved for the page1 and page2 ajax requests, respectively.
  // Each argument is an array with the following structure: [ data, statusText, jqXHR ]
  var data = a1[0].responseData.feed.entries.concat(a2[0].responseData.feed.entries)
});
于 2013-09-20T15:37:56.077 回答