MongoDB

router.put("/goods/:goodsId/cart", async (req, res) => { const { params: { goodsId }, body: { quantity }, } = req; const existsCart = await Cart.find({ goodsId: Number(goodsId) }); if (existsCart.length) { await Cart.updateOne({ goodsId: Number(goodsId) }, { $set: { quantity } }); } res.json({ success: true });});put 메서드로 mongo db 데이터를 업데이트 하는 코드를 공부하는데 $set 이라는 기호를 보았다. Mongo DB ..
전호영
'MongoDB' 태그의 글 목록