Tôi đang sử dụng Thư viện Mongoose để truy cập MongoDB với node.js
Có cách nào để xóa khóa khỏi tài liệu không? tức là không chỉ đặt giá trị là null, nhưng loại bỏ nó?
User.findOne({}, function(err, user){
//correctly sets the key to null... but it's still present in the document
user.key_to_delete = null;
// doesn't seem to have any effect
delete user.key_to_delete;
user.save();
});