下面是我的用户模式在user.js模型-

var userSchema = new mongoose.Schema({
    local: {
        name: { type: String },
        email : { type: String, require: true, unique: true },
        password: { type: String, require:true },
    },
    facebook: {
        id           : { type: String },
        token        : { type: String },
        email        : { type: String },
        name         : { type: String }
    }
});

var User = mongoose.model('User',userSchema);

module.exports = User;

这就是我在控制器中使用它的方式

var user = require('./../models/user.js');

这就是我在数据库中保存它的方式

user({'local.email' : req.body.email, 'local.password' : req.body.password}).save(function(err, result){
    if(err)
        res.send(err);
    else {
        console.log(result);
        req.session.user = result;
        res.send({"code":200,"message":"Record inserted successfully"});
    }
});

错误- - - - - -

{"name":"MongoError","code":11000,"err":"insertDocument :: caused by :: 11000 E11000 duplicate key error index: mydb.users.$email_1  dup key: { : null }"} 

我检查了db集合,没有这样的重复条目存在,让我知道我做错了什么?

供您参考- req.body.email和req.body.password是抓取值。

我也检查了这篇文章,但没有帮助

如果我完全删除,然后它插入文档,否则它抛出错误“重复”错误,即使我在local.email中有一个条目


当前回答

转到数据库,单击该特定集合并删除除id之外的所有索引。

其他回答

我也遇到过这个问题,我解决了它。 此错误显示此处已经显示了电子邮件。因此,您只需要从Model for email属性中删除这一行。

unique: true

这是有可能的,即使它不起作用。所以只需要从MongoDB中删除集合并重新启动服务器。

我用这种方法解决了我的问题。

只需进入您的mongoDB帐户->最后收集,然后删除您的数据库列。或者使用mongoDB compass,然后删除数据库,

当你在数据库中保存一些空值时,有时会发生这种情况。

在这种情况下,登录到Mongo,找到你不再使用的索引(在OP的情况下是'email')。然后选择删除索引

这是因为已经存在一个与配置同名的集合..请通过mongo shell从mongodb中删除该集合,然后重试。

db.collectionName.remove()

现在运行应用程序,它应该可以工作

删除您的数据库,然后它将工作。

您可以执行以下步骤删除数据库

步骤1:进入mongodb安装目录,默认目录为“C:\Program Files\ mongodb \Server\4.2\bin”

步骤2:直接启动mongo .exe或使用命令提示符将其最小化。

步骤3:直接或使用命令提示符启动mongo.exe,执行以下命令

i)使用你的数据库名(如果你不记得数据库名,使用显示数据库)

(二)db.dropDatabase ()

这将删除数据库。 现在你可以插入你的数据,它不会显示错误,它会自动添加数据库和集合。