在一定时间后如何在Mongoose中删除数据?

时间:2018-12-11 18:10:14

标签: node.js mongoose mongoose-schema

我在nodejs中尝试

const recoverySchema = mongoose.Schema({
   recoveryId : {type: Number, unique: true},
   createdAt: { type: Date, default: Date.now, expires: 3600 },
},{ strict: false });

我希望1小时后删除数据。

..但是数据会在未指定的时间删除。

出什么问题了?

0 个答案:

没有答案