我遇到了 Jade 模板引擎或其他问题;我不知道。当我遍历一个对象并输出它的属性时,它似乎没有输出“国家”属性,但输出“ id”和“ _v”属性很好。我希望“sections”属性不会输出,因为它本身就是一个对象,但它在控制台日志中没有说明任何内容。
架构:
var CSVSchema = {
country: {type: String}
, sections: [
{
title: {type: String}
, sub_sections: [
{
title: {type: String}
, value: {type: String}
}
]
}
]
};
搜索控制器: 这会在 mongodb 数据库中搜索一个国家(使用 mongoose)并呈现 Jade 模板并传递包含的属性。
exports.query = function (req, res) {
var query = req.body.query;
results.find({"country": query}, function (err, data){
res.render('search/query', {
title: 'Search Query'
, query: req.body.query
, results: data
, message: req.flash('error')
})
});
}
来自 mongodb 的 JSON 对象: 这是存储在数据变量中的内容,通过搜索控制器传递给 Jade 模板。由于某种原因, country 属性出现在 _id 属性之前,而 section 不是?我已经编辑了 mongodb 中的条目,将country放在_id之后,但这并没有解决任何问题。
{ country: 'India',
_id: 51cda5163c7286000000000c,
sections:
[ { sub_sections: [Object],
_id: 51cda5163c72860000000011,
title: 'Undergraduate' },
{ sub_sections: [Object],
_id: 51cda5163c7286000000000d,
title: 'Postgraduate' } ],
__v: 0 }
Jade 模板: 为了测试 Jade 的渲染没有问题,我插入了一个测试属性以查看它是否输出正常,并且确实正常。
for result in results
- result.test = 'TESTING123'
ul
li #{result._id}
li #{result.test}
li #{result.country}
li #{result.sections}
li #{result.__v}
输出:
- 51cd926b46baa54df700000c
- 测试123
- 0
Package.json: 我尝试降级到 Jade 0.30.x,但它破坏了我的模板,在“body is not defined?”行中说了一些话。
{
"name": "test",
"description": "test",
"keywords": [
"express",
"mongoose",
"mongodb",
"passport"
],
"version": "0.0.1",
"private": true,
"engines": {
"node": "0.10.x",
"npm": "1.2.x"
},
"dependencies": {
"express": "3.3.1",
"jade": "0.31.x",
"mongoose": "3.6.13",
"connect-mongo": "0.3.2",
"connect-flash": "0.1.1",
"passport": "0.1.17",
"passport-local": "0.1.6",
"csv": "0.3.3",
"moment": "2.0.0"
},
"devDependencies": {
"mocha": "1.11.0",
"nodemon": "0.7.8"
}
}