1

我想为这个简单的网络应用程序实现分页。

我看到可以使用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
    }
});

该系列

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

该模型

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

1 回答 1

1

而不是items.fetch(),使用类似items.fetchPage({pageSize: 12, pageNumber: 23})then 的方法实现 this 作为集合上的方法。

于 2012-05-03T00:24:02.043 回答