当我查询以获取另一个文档记录时,我找到了我的记录,但是它不会从请求中返回。
我遵循了doc,但看不到任何错误。谢谢
let request = await App.find({}, async (error, app) => {
if (error) {
return console.log(error)
}
app.company = await Company.findOne({ 'id' : app.company_id})
console.log(app) //has company inside
return app
})
console.log(request) //request no longer has company..