我想通过一封电子邮件启用多次注册 所以我想删除索引用户名和emails.address
这是我的代码,我正在运行@server来删除索引
Meteor.startup(function () {
Meteor.users._dropIndex({"emails.address":1});
Meteor.users._dropIndex({"username":1});
});
以上代码无效。
Accounts.createUser({
email: email,
password: passwd,
profile: {
createdAt: new Date()
}
});
以上代码始终返回用户已存在