Error

Error: Invalid atomic update value for $set. Expected an object, received string

까이 2022. 5. 27. 14:11

Error: Invalid atomic update value for $set. Expected an object, received string

 

작업하는 기능 중 

voiceAlbum 수정기능에서 생긴 에러

수정 작업을 Thunder Client로 확인하던 중 

 

해당 에러가 계속해서 뜨길래 mongoose update를 검색해서 찾아봄

 

기존에 코드는 

 if (existVoiceAlbum) {
        await VoiceAlbum.updateOne(
          { _id: voiceAlbumId },
          { $set: voiceAlbumName, voiceAlbumCover }
        );
      }

이런방식으로 작성했었는데

 

공식문서를 확인해보니 $set 뒤에 {}한번 더 감싸줘야 하는 걸 발견

 

 

await VoiceAlbum.updateOne(
          { _id: voiceAlbumId },
          { $set: { voiceAlbumName, voiceAlbumCover } }
        );

감싸주고 해결 !