我认为方法是覆盖fetch
,您可以在其中对每个 API 进行 Ajax 调用。将返回的部分集合存储在一个临时数组中,当所有 4 个都完成后,使用this.reset
. (我想你可以使用 JQuery Deferred
,或者只是保持内部统计返回的调用次数。)
像这样的东西:
var Collection = Backbone.Collection.extend({
fetch: function() {
this.completeCount = 0;
this.errorCount = 0;
this.temp = [];
this.urls = [ 'url1', 'url2', 'url3', 'url4' ];
var self = this;
// make a $.get call for each URL and add
_.each(this.urls, function(url) {
$.get(url, { success: function(data) {
console.log("Got partial collection from " + url);
self.addPartial(data);
// alternatively, just call "self.add(data);" here
}, error: function(response) {
console.log("Oops, the Ajax call failed for some reason... ignoring");
self.completeCount ++;
self.errorCount ++;
} });
});
},
// add a JSON array that contains a subset of the collection
addPartial: function(data) {
this.completeCount ++;
var self = this;
// add each item to temp
_.each(data, function(item) {
self.temp.push(item);
});
// if all have been received, then create the collection
if (this.completeCount == this.urls.length) {
this.reset(this.temp);
}
}
});
这是一个小提琴,我$.get
用一个在短暂延迟后只返回虚拟数据的方法替换了它。
对评论的回应
将响应添加到集合中可能会更好(无论如何它更容易)。 这是一个更新的小提琴。