How to update embedded document in mongoose?

前端 未结 3 1472
自闭症患者
自闭症患者 2020-12-15 11:16

I\'ve looked through the mongoose API, and many questions on SO and on the google group, and still can\'t figure out updating embedded documents.

I\'m trying to upda

3条回答
  •  眼角桃花
    2020-12-15 12:06

    Is this just a mismatch on variables names?

    You have user.userListings[i].listingId in the for loop but user.userListings[i]._id in the find.

    Are you looking for listingId or _id?

提交回复
热议问题