在nodejs上新建im
我无法将数据从select db发送到jade,但使用json
router.get('/view-profil', function(req, res, next){
req.models.users.all({id:16}, function(err, results) {
if (err) {
res.send({
status:'error',
data:err
});
} else {
res.send({
status:'ok',
data:results
});
console.log(results)
// results.forEach(function(data){
// console.log(data);
// });
// res.render('user/user-profil', { title: 'User Profil', userdata:results });
}
});
});
看法
extends ../layout
block content
h1= title
p View All User to #{title}
p {userdata.nickname}
a(href='/user') Back to user
当我执行res.send()时,此操作有效,但当我只显示标题时不起作用。
res.render('user/user-profil', { title: 'User Profil', userdata:results });
我错了吗?
谢谢你之前
最佳答案
您正在将数组传递给jade,因此需要选择其中的第一个元素:
extends ../layout
block content
h1= title
p View All User to #{title}
p {userdata[0].nickname}
a(href='/user') Back to use
否则,如果对orm使用mongoose,则需要使用函数req.models.users.findbyid。
关于node.js - 可以将数据从数据库 Node 发送到 Jade ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29965432/