RestaurantSchema.post('save', function (doc) {
if (doc.isNew) {
log.info('new doc saved, now create corresponding auditing instances');
mongoose.model('Auditing').onObjectCreated(doc, 1);
}
});
原来公司后台大神写的代码,这里的onObjectCreated是什么意思?求大神指点!
2 回复