从另一个方法返回值

时间:2015-06-18 16:03:20

标签: meteor meteor-helper

在模板助手中,是否可以从方法中获取另一个方法返回的值?

在示例中

Puma 2.11.3 starting...
* Min threads: 0, max threads: 16
* Environment: production
* Listening on tcp://0.0.0.0:3000

1 个答案:

答案 0 :(得分:1)

您可以重构代码,这样您就可以通过共享方式获取帖子光标:

var postsCursor = function() {
  return Posts.find();
};

Template.postsList.helpers
  posts: postsCursor,
  nextPath: function () {
    var count = postsCursor().count();
    // do something with count
  }
});