Meteor:Uncaught TypeError:Meteor.users不是一个函数

时间:2016-12-23 12:41:28

标签: meteor meteor-accounts

在运行Meteor的网站上。通过谷歌Chrome控制台,我可以运行:

Meteor.user()

这将返回我登录帐户所需的内容。

当我跑步时

Meteor.users()

返回

VM596:1 Uncaught TypeError: Meteor.users is not a function

请有人建议吗?

2 个答案:

答案 0 :(得分:3)

Meteor.users 是一个包含所有用户文档的mongo集合。所以你不能做Meteor.users()。相反,您可以使用

在那里找到文档
Meteor.users.find({}).fetch();

有关详细信息,请参阅meteor docs

答案 1 :(得分:2)

您必须在package.js中包含以下包才能运行Meteor.users

accounts-password@1.3.3