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;
});