0
db.users.findOne({}, function (err, user) {
//update or add a field
user.name = 'Phil';
//is the next line possible?
user.save(); //error :(
});
是否有像'保存'的功能,以便我對'用戶'的更改將保存在數據庫中?Node.js + Mongodb:是否可以對從數據庫返回的數據調用'save'?