情景:
查询:
pre
中间件在插入/保存之前检查每条记录吗?答案 0 :(得分:0)
您可以使用
Schema.post('insertMany', function (docs, next) {
docs.map((doc) =>
console.log(doc)
);
});
或
Schema.pre('insertMany', function (docs, next) {
docs.map((doc) =>
console.log(doc)
);
});