10
Mongoose를 사용하여 MongoDB 문서에서 키 삭제
node.js로 MongoDB에 액세스하기 위해 Mongoose 라이브러리를 사용하고 있습니다. 문서에서 키 를 제거 하는 방법이 있습니까? 즉 값을 null로 설정하는 것이 아니라 제거 하시겠습니까? 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 …