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


当前回答

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

unique: true

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

其他回答

错误消息表示已经有一个记录,其中的电子邮件为null。换句话说,您已经有了一个没有电子邮件地址的用户。

相关文件:

If a document does not have a value for the indexed field in a unique index, the index will store a null value for this document. Because of the unique constraint, MongoDB will only permit one document that lacks the indexed field. If there is more than one document without a value for the indexed field or is missing the indexed field, the index build will fail with a duplicate key error. You can combine the unique constraint with the sparse index to filter these null values from the unique index and avoid the error.

唯一索引

稀疏索引仅包含具有索引字段的文档条目,即使索引字段包含空值。

换句话说,稀疏索引适用于多个文档都具有空值的情况。

稀疏索引


评论:

您的错误显示键名为mydb.users。$email_1,这使我怀疑您有两个用户的索引。email和users.local.email(前者是旧的,目前未使用)。从Mongoose模型中删除字段不会影响数据库。检查mydb.users.getIndexes(),如果是这种情况,用mydb.users.dropIndex(<name>)手动删除不需要的索引。

当我在config/models.js中进行以下配置时,我也遇到了同样的问题

module.exports.models = {
  connection: 'mongodb',
  migrate: 'alter'
}

改变迁移从'alter'到'safe'固定它为我。

module.exports.models = {
  connection: 'mongodb',
  migrate: 'safe'
}

以下是我的相关体会:

在“User”模式中,我将“name”设置为唯一键,然后运行一些执行,我认为已经设置了数据库结构。

然后我将唯一键更改为“用户名”,当我将数据保存到数据库时不再传递“名称”值。因此mongodb可能会自动将新记录的“name”值设置为空,这是重复的关键字。我尝试将“name”键设置为“User”模式中的非唯一键{name: {unique: false,类型:String}},以覆盖原始设置。然而,这并没有起作用。

最后,我提出了自己的解决方案:

当你保存数据记录时,只需设置一个随机的键值,不太可能与'name'键重复。Simply Math方法”+ Math.random() + Math.random()生成一个随机字符串。

我也遇到过类似的问题, 我只是清除特定字段的索引,然后它为我工作。 https://docs.mongodb.com/v3.2/reference/method/db.collection.dropIndexes/

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