我今天看着Meteor的分页.
我对这个回购感兴趣:
https://github.com/alethes/meteor-pages
显示的初始代码看起来很简单:
this.Pages = new Meteor.Pagination("collection-name");
和:
{{> collection-name}} {{> pages}} {{> pagesNav}}
我想分页这个演示:
https://github.com/meteor/simple-todos
我在那里看到的代码简化了这个:
Tasks = new Mongo.Collection("tasks"); if (Meteor.isServer) { // This code only runs on the server Meteor.publish("tasks", function () { return Tasks.find({})})} if (Meteor.isClient) { // This code only runs on the client Meteor.subscribe("tasks"); // ... }
和:
也许今天我的大脑有点慢.我不清楚如何对上面的代码进行分页.
如何使用github.com/alethes/meteor-pages从simple-todos中分页上面的代码?