提问人:Hunter 提问时间:11/15/2023 更新时间:11/15/2023 访问量:40
Mongodb - 一旦垃圾箱字段更改为 true,一个月后自动删除文档
Mongodb - Delete document automatically after one month once trash field change to true
问:
我想将用户“已删除”的文档保留在数据库中下一个月,然后它应该自动删除
let product = new Schema({
name: String,
trash: false
},
{
timestamps: true
}
);
let task = { $set: { trash: true };
removeDoc = await Product.findOneAndUpdate(query, task, {new: true });
答: 暂无答案
评论
trash: true
)