Programing

Mongoose findByIdAndUpdate가 올바른 모델을 반환하지 않음

lottogame 2020. 9. 17. 18:52
반응형

Mongoose findByIdAndUpdate가 올바른 모델을 반환하지 않음


Mongoose findByIdAndUpdate가 콜백에서 올바른 모델을 반환하지 않는 이전에 본 적이없는 문제가 있습니다.

코드는 다음과 같습니다.

    var id = args._id;
    var updateObj = {updatedDate: Date.now()};
    _.extend(updateObj, args);

    Model.findByIdAndUpdate(id, updateObj, function(err, model) {
        if (err) {
            logger.error(modelString +':edit' + modelString +' - ' + err.message);
            self.emit('item:failure', 'Failed to edit ' + modelString);
            return;
        }
        self.emit('item:success', model);
    });

db의 원본 문서는 다음과 같습니다.

{
    _id: 1234
    descriptors: Array[2],
    name: 'Test Name 1'
}

들어가는 updateObj는 다음과 같습니다.

{
    _id: 1234
    descriptors: Array[2],
    name: 'Test Name 2'
}  

콜백에서 반환 된 모델은 updatedObj가 아니라 원래 모델과 동일합니다. db를 쿼리하면 올바르게 업데이트되었습니다. 데이터베이스에서 반환되지 않습니다.

이것은 '어리석은 사용자'오류처럼 느껴지지만 볼 수 없습니다. 어떤 아이디어라도 대단히 감사합니다.


Mongoose 4.0에서 (및 ) new옵션의 기본값 findByIdAndUpdate( 릴리스 노트 # 2262 참조 findOneAndUpdate)로 변경되었습니다 . , 업데이트가 적용된 후 문서의 새 버전을 가져 오려면 옵션을로 명시 적으로 설정해야합니다 .falsetrue

Model.findByIdAndUpdate(id, updateObj, {new: true}, function(err, model) {...

참고 URL : https://stackoverflow.com/questions/30419575/mongoose-findbyidandupdate-not-returning-correct-model

반응형