以下是我在模型中的user架构-user.js
user
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 }"}
我检查了数据库集合并且不存在这样的重复条目,让我知道我做错了什么?
仅供参考 - req.body.email并且req.body.password正在获取值。
req.body.email
req.body.password
如果我完全删除,那么它会插入文档,否则即使我在 local.email 中有一个条目,它也会抛出错误“重复”错误
错误消息是说已经有一条记录null作为电子邮件。换句话说,您已经有一个没有电子邮件地址的用户。
null
相关文档:
如果文档在唯一索引中没有索引字段的值,则索引将为该文档存储空值。由于唯一性约束,MongoDB 将只允许一个缺少索引字段的文档。如果有多个文档没有索引字段的值或缺少索引字段,则索引构建将失败并出现重复键错误。 您可以将唯一约束与稀疏索引结合起来,以从唯一索引中过滤这些空值并避免错误。
如果文档在唯一索引中没有索引字段的值,则索引将为该文档存储空值。由于唯一性约束,MongoDB 将只允许一个缺少索引字段的文档。如果有多个文档没有索引字段的值或缺少索引字段,则索引构建将失败并出现重复键错误。
您可以将唯一约束与稀疏索引结合起来,以从唯一索引中过滤这些空值并避免错误。
唯一索引
稀疏索引仅包含具有索引字段的文档的条目,即使索引字段包含空值。
换句话说,稀疏索引对于多个文档都具有null值是可以的。
稀疏索引
来自评论:
Your error says that the key is named mydb.users.$email_1 which makes me suspect that you have an index on both users.email and users.local.email (The former being old and unused at the moment). Removing a field from a Mongoose model doesn’t affect the database. Check with mydb.users.getIndexes() if this is the case and manually remove the unwanted index with mydb.users.dropIndex(<name>).
mydb.users.$email_1
users.email
users.local.email
mydb.users.getIndexes()
mydb.users.dropIndex(<name>)