我在服务器上有以下index.pug文件,我正在尝试渲染:
block content
h1.
User List
ul
each user, i in userlist
li
a(href="mailto:#{user.username}")= user.username
我的node.js应用程序代码:
app.get('/sign-up', function(req, res) {
var db = req.db
var collection = db.get('_User')
collection.find({},{},function(e,docs){
res.render('index', {"userlist":docs})})
})
尝试打开“注册”时出现以下错误: "无法读取属性'用户名'未定义"
为什么我会收到此错误?我确实有一个名为' _User'它有'用户名'关键在于它。