我想为这个简单的网络应用程序实现分页。
我看到可以使用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;
});