当前位置:  开发笔记 > 编程语言 > 正文

Meteor:如何对简单的todos演示进行分页?

如何解决《Meteor:如何对简单的todos演示进行分页?》经验,为你挑选了0个好方法。

我今天看着Meteor的分页.

我对这个回购感兴趣:

https://github.com/alethes/meteor-pages

显示的初始代码看起来很简单:

this.Pages = new Meteor.Pagination("collection-name");

和:


    {{> collection-name}}


我想分页这个演示:

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");
  // ...
}

和:


    
    {{#each tasks}} {{> task}} {{/each}}

也许今天我的大脑有点慢.我不清楚如何对上面的代码进行分页.

如何使用github.com/alethes/meteor-pages从simple-todos中分页上面的代码?

推荐阅读
k78283381
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有