在运行Meteor的网站上。通过谷歌Chrome控制台,我可以运行:
Meteor.user()
这将返回我登录帐户所需的内容。
当我跑步时
Meteor.users()
返回
VM596:1 Uncaught TypeError: Meteor.users is not a function
请有人建议吗?
答案 0 :(得分:3)
Meteor.users 是一个包含所有用户文档的mongo集合。所以你不能做Meteor.users()。相反,您可以使用
在那里找到文档Meteor.users.find({}).fetch();
有关详细信息,请参阅meteor docs
答案 1 :(得分:2)
您必须在package.js中包含以下包才能运行Meteor.users
accounts-password@1.3.3