Meteor用户发现在发布中返回任何用户

时间:2014-10-20 22:05:02

标签: meteor iron-router

我没有在我的出版物中找回任何用户,这有点奇怪。我很确定我已经正确设置了所有内容。 console.log计数显示14是正确的

Meteor.publish('collaborators', function() {
    console.log(Meteor.users.find().count());
    return Meteor.users.find();

});

在我的路由器中等待功能

Meteor.subscribe('collaborators');

我的模板

collaborators: function() {
    return Collaborators.find(); 
},

0 个答案:

没有答案