具有相同电子邮件Meteor.Js帐户密码的多个帐户

时间:2016-05-05 17:57:01

标签: mongodb meteor

我想通过一封电子邮件启用多次注册 所以我想删除索引用户名和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()
            }
        });

以上代码始终返回用户已存在

0 个答案:

没有答案