我正在尝试使用 mongoose 将记录插入 mongodb,但是当记录已经在数据库中时,记录不会更新。有什么我做错了吗?mongoose 的文档对我来说并不是最容易理解的。
models.fg_records.update({email:clean_email}, inactive_user, {update: true}, function (err) {
if(err){
throw err;
console.log(err);
} else {
// send mail with defined transport object
transport.sendMail(message, function(err, response) {
if(err) {
console.log(err);
view('<ul><li>There was a problem sending an email to this user. Make sure you types it correctly.</li></ul>');
} else {
res.redirect('/records');
}
});
}
});