brickyang / egg-mongo-native

MongoDB egg.js plugin using native driver.
MIT License
75 stars 11 forks source link

when use insertOne have a error #44

Open munitioner opened 3 years ago

munitioner commented 3 years ago

this is my code and error 微信截图_20201116201430 微信截图_20201116201455

brickyang commented 3 years ago

this is my code and error

微信截图_20201116201430

微信截图_20201116201455

错误提示很清楚,this.app.mongo undefined。检查插件是否成功启用(可以检查 log)并逐步打印 mongoapp 对象排查。

munitioner commented 3 years ago

插件可以正常使用,find和updateOne都正常

brickyang commented 3 years ago

插件可以正常使用,find和updateOne都正常

在同一个环境内吗?

连续打印三行

console.log(this.app.mongo);
console.log(this.app.mongo.find);
console.log(this.app.mongo.insertOne);