mongoose post方法总结and疑点
Posted 专注前端开发
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mongoose post方法总结and疑点相关的知识,希望对你有一定的参考价值。
官方文档代码:
1 var schema = new Schema(..); 2 schema.post(‘save‘, function (doc) { 3 console.log(‘this fired after a document was saved‘); 4 }); 5 6 var Model = mongoose.model(‘Model‘, schema); 7 8 var m = new Model(..); 9 m.save(function (err) { 10 console.log(‘this fires after the `post` hook‘); 11 });
大概意思是m在保存时会触发post监听的事件会被触发,
不明白post和pre有什么区别,
个人猜测,
1、触发的时间不同
以上是关于mongoose post方法总结and疑点的主要内容,如果未能解决你的问题,请参考以下文章
Mongoose - 不能在 post findOneAndUpdate 钩子中调用 model.find()
Mongoose - 不能在 post findOneAndUpdate 钩子中调用 model.find()
使用 Mongoose、Node.js 和 Underscore 生成代码的简单方法?
java.lang.IllegalStateException: Method get not annotated with HTTP method type (ex. GET, POST);(代码片