2012-04-15 74 views
1

我想實現分頁到這個簡單的web app分頁與backbone.js

我看到可以使用backbone.paginator,但在使用此組件之前,我想知道使用backbone.js實現分頁的最簡單最簡單的方法是什麼。

這裏一點點的代碼:
請參閱在APPVIEW


評論的觀點

var AppView = Backbone.View.extend({ 
    initialize: function() { 
     items.fetch(); // <-- now it fetches all the data, 
         //  I would like to set a limit 
    } 
}); 

的collecti在

var ItemsCollection = Backbone.Collection.extend({ 
    model: item 

模型

var ItemModel = Backbone.Collection.extend({ 
    return ItemModel; 
}); 

回答

1

相反的items.fetch(),使用類似items.fetchPage({pageSize: 12, pageNumber: 23})然後實現,這個是集合的方法。