mongoose 更新元素 DeprecationWarning: collection.update is deprecated. Use updateOne, updateMany
生活随笔
收集整理的這篇文章主要介紹了
mongoose 更新元素 DeprecationWarning: collection.update is deprecated. Use updateOne, updateMany
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
我一開始的寫法:
const updOne = await this.update({ _id: verify_id }, {$set: {// 認證通過,狀態設置為1state: 1,// 審核操作人verify_user,verify_at: Date.now()} });使用mongoose更新元素值,報錯了DeprecationWarning: collection.update is deprecated. Use updateOne, updateMany。
去官網查看原因:https://mongoosejs.com/docs/deprecations.html
原因是使用mongoose需要遵循它的新語法,改造成如下寫法:
解決報錯。
創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎總結
以上是生活随笔為你收集整理的mongoose 更新元素 DeprecationWarning: collection.update is deprecated. Use updateOne, updateMany的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 图片在线转换base64
- 下一篇: jsp中$使用不了