我正在使用accounts-base
和创建 MeteorJS 中的用户验证accounts-password
if( Meteor.users.find({"emails.address": checkEmail}) ) {
Session.set('registerErrors', {email:'Email already exists'});
return false;
} else {
Session.set('registerSuccess', {email:'Valid Email'});
}
我有这个作为我的验证的一部分。唯一的问题是它将所有电子邮件地址返回为“电子邮件已存在”