如何从异步函数向pug模板返回对象数组?

时间:2019-11-17 18:07:59

标签: node.js asynchronous mongoose promise pug

const Entry = mongoose.model('daily',entrySchema)

async function displayEntry(){
    let data = await Entry.find()
    console.log(data)
    return data
}

module.exports = { displayEntry : displayEntry }

///当我将displayEntry导入到新文档中并尝试在得到[对象承诺]的哈巴狗文档上显示数据时。我想我忘记了displayEntry函数中的某个步骤?

0 个答案:

没有答案