gpt4 book ai didi

node.js - 从mongodb(mongoose)获取数据到jade view

转载 作者:IT老高 更新时间:2023-10-28 13:20:39 27 4
gpt4 key购买 nike

我一直试图在我的 Jade View 中获取 mongodb 数据。我是 node.js 的新手,如果这看起来很愚蠢,我深表歉意!我可以在控制台中查看我的表格中的内容:

Material.find(function (err, materials){
console.log(materials);
});

但我想将该数据传递给我的 Jade View

app.get('/help', function(req, res){
res.render('help', {materials: materials});
});

我该怎么做?

最佳答案

你在正确的轨道上!只需将渲染放在 find 的回调中:

app.get('/help', function(req, res){
Material.find(function (err, materials){
res.render('help', {materials: materials});
});
});

关于node.js - 从mongodb(mongoose)获取数据到jade view,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11925242/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com