在请求中未返回的猫鼬设置填充字段

时间:2018-10-17 14:39:05

标签: database mongoose mongoose-populate

当我查询以获取另一个文档记录时,我找到了我的记录,但是它不会从请求中返回。

我遵循了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..

0 个答案:

没有答案