我有以下脚本可以正常工作:
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
.
我该怎么做呢?两个提要的结构完全相同,只是在title
和publishedDate