MeteorJS和alethes:页面

时间:2015-01-21 23:48:19

标签: javascript meteor pagination

我正在尝试构建使用铁路和alethes的简单MeteorJS应用程序:页面包用于分页。

我正在定义我的路线:

lib / routes.js

Router.route('/test' {
});

LIB /集合/ testCollection.js

Test = new Mongo.Collection("test");

服务器/ publications.js

Pages = new Meteor.Pagination(Test);

在我的模板中:

的客户机/的test.html

<template name="test">

{{> pages}}

</template>

什么都没有显示?有人可以帮我看看问题吗? (填充数据库:文档结构中的_id“field”和test“field”。)

2 个答案:

答案 0 :(得分:1)

我有同样的问题,然后尝试更改名称,使我的模板名称与集合名称匹配,并且工作正常

答案 1 :(得分:0)

Pages = new Meteor.Pagination(Test);

它不能只在服务器端代码上。它必须在公共代码中,在服务器和客户端上运行