複数のページのコレクションをフェッチし、すべてのフェッチがいつ行われたかを知る方法を探しています。私のコレクションは次のようになります。
app.collections.Repos = Backbone.Collection.extend({
model: app.models.Repo,
initialize: function(last_page){
this.url = ('https://api.github.com/users/' + app.current_user + '/watched');
for (var i = 1; i <= last_page; i++) {
this.fetch({add: true, data: {page: i}});
};
}, ...
クリーンなコードでこれをどのように達成できるか考えていますか?