在模板助手中,是否可以从方法中获取另一个方法返回的值?
在示例中
Puma 2.11.3 starting...
* Min threads: 0, max threads: 16
* Environment: production
* Listening on tcp://0.0.0.0:3000
答案 0 :(得分:1)
您可以重构代码,这样您就可以通过共享方式获取帖子光标:
var postsCursor = function() {
return Posts.find();
};
Template.postsList.helpers
posts: postsCursor,
nextPath: function () {
var count = postsCursor().count();
// do something with count
}
});