如何在Node.js中更新mongoDB的expireSub字段?

moiiocjp  于 2023-01-20  发布在  Go
关注(0)|答案(1)|浏览(124)
for (let j = 0; j < result[i].subscription.length; j++) {
          let re = await userdetails.updateOne(
            { _id: result[i]._id },
            { $set: { subscription: { [j]: { $set: { expireSub: true } } } } }
          )};

更新mongoDB的expireSub字段。

相关问题