0
我想用find
根據電子郵件地址返回用戶。從電子郵件地址找到用戶
中的東西的行:
Meteor.users.find({emails : [address : '[email protected]']}).fetch()
它沒有工作,我怎麼能檢索用戶這樣?
我想用find
根據電子郵件地址返回用戶。從電子郵件地址找到用戶
中的東西的行:
Meteor.users.find({emails : [address : '[email protected]']}).fetch()
它沒有工作,我怎麼能檢索用戶這樣?
您可以使用此查詢:
function findByEmail(email){
var user = Meteor.users.find({
"emails.address": email
}).fetch();
return user;
}
您可以通過電子郵件這樣的查詢用戶:
Users.find({ email: "[email protected]" }).fetch();
這工作,但我不得不增加一個字段像Users.find({電子郵件: 「[email protected]」,verified:false})。fetch();我認爲接受的答案是優雅的 –