在 Meteor 中,是否可以使用命令提示符列出用户
In Meteor, is it possible to list users using command prompt
是否可以使用命令提示符列出所有 meteor 用户、各自的密码和所有相关数据?我试过打开流星 shell 和 运行 'Accounts.find' 和 'Accounts._accountData' 但都没有 returns 我要找的东西。
从终端通过流星 shell:
meteor shell
会开流星shell
Meteor.users.find().fetch()
将找到所有用户和各自的数据
从终端通过流星 mongo:
meteor mongo
将打开 mongo shell
db.users.find()
将在 mongo
中找到所有用户和各自的数据
是否可以使用命令提示符列出所有 meteor 用户、各自的密码和所有相关数据?我试过打开流星 shell 和 运行 'Accounts.find' 和 'Accounts._accountData' 但都没有 returns 我要找的东西。
从终端通过流星 shell:
meteor shell
会开流星shellMeteor.users.find().fetch()
将找到所有用户和各自的数据
从终端通过流星 mongo:
meteor mongo
将打开 mongo shelldb.users.find()
将在 mongo 中找到所有用户和各自的数据