我正在为nodejs使用mongoose包。当我在db中保存文件后发现,文件的控制台日志保存得很好。但实际上在db中的值 没有储蓄。请告诉我错误的地方
我的示例代码如下:
tag_service.findOne({user_id : req.body.userId}).exec(function(err, service_doc) {
if (!err && service_doc != null) {
service_doc.profile_tags.contacts_info = true
service_doc.save(function(err, tg_doc) {
console.log(err, tg_doc)(here displaying well,But not saved in DB)
})
}
})