下面是我的用户模式在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中有一个条目


当前回答

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

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

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

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

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

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

(二)db.dropDatabase ()

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

其他回答

如果您处于开发的早期阶段:消除集合。否则:将此添加到每个给出错误的属性(注:我的英语不太好,但我尝试解释)

index:true,
unique:true,
sparse:true

在我的情况下,我只是忘记返回res.status(400)后找到该用户与req。电子邮件已经存在

当我试图修改使用mangoose定义的模式时,也遇到了同样的问题。我认为这个问题是由于在创建一个集合时做了一些底层的过程,比如描述对用户隐藏的索引(至少在我的情况下)。所以我找到的最好的解决方案是放弃整个系列,重新开始。

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

检查收集索引。

我有这个问题,由于过时的索引收集字段,这应该由不同的新路径存储。

猫鼬添加索引,当你指定字段为唯一的。