Poniżej znajduje się mój user
schemat w user.js
modelu -
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;
Tak używam go w moim kontrolerze -
var user = require('./../models/user.js');
Tak zapisuję to w db -
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"});
}
});
Błąd -
{"name":"MongoError","code":11000,"err":"insertDocument :: caused by :: 11000 E11000 duplicate key error index: mydb.users.$email_1 dup key: { : null }"}
Sprawdziłem kolekcję db i nie ma takiego zduplikowanego wpisu, czy mogę powiedzieć, co robię źle?
FYI - req.body.email
i req.body.password
pobieram wartości.
Sprawdziłem również ten post, ale nie pomogłem STACK LINK
Jeśli usunąłem całkowicie, wstawia dokument, w przeciwnym razie zgłasza błąd „Duplikuj” błąd, nawet jeśli mam wpis w local.email
unique: false
nie miało żadnego wpływu. Uświadomiłem sobie, że najpierw muszę upuścić stół, a potem zadziała. Możesz zrobić coś takiego db.whateverthecollection.drop({})
. Uważaj, usuwa kolekcję.