我有facebook用户的用户名。
我想搜索用户是否已经存在于我的数据库中,如果他已经存在,则返回他的“_id”。
我试过这个
Meteor.users.find({"services.facebook.username":"xxx"})
我也有来自谷歌和密码的用户 这有效吗?
如果是,如何返回_id字段
答案 0 :(得分:0)
试试这个
将此代码放在服务器端,它将起作用
Meteor.users.findOne({"services.facebook.username":"xxx"},{fields: {'_id': 1}});