可以在模型中钩子函数中获取更新数据并在保存前修改
schema.pre(‘updateOne‘, function() { let doc = this.getUpdate(); ratio.process(doc.subtitle); this.set({ updatedAt: new Date() }); });
2024-01-17 20:04:10
可以在模型中钩子函数中获取更新数据并在保存前修改
schema.pre(‘updateOne‘, function() { let doc = this.getUpdate(); ratio.process(doc.subtitle); this.set({ updatedAt: new Date() }); });