我正在尝试使用JADE迭代JSON文档。
我的服务器(运行node.js + express)正在对.get()请求执行以下操作,
app.get('/search/', function(req,res){ // Parse the query var dbQuery = url.parse(req.url, true).query; var product = dbQuery.product; var category = dbQuery.category; console.log('Searching for: ' + product + ' in ' + category); //Mongo DB setup then query var result; var server = new mongodb.Server('23.23.129.158', 27017, {}); new mongodb.Db('militaryListDB', server, {}).open(function(err, client){ if(err) throw err; var collection = new mongodb.Collection(client, 'products'); collection.find({}).toArray(function(err, results){ console.log(results); console.log(JSON.stringify(results)); res.render('results', {result: JSON.stringify(results), title: 'Test'}); }); }); });
这就是它呈现给客户端的东西。
[{"_id":"50738ebbe3d87c6beaddb6f2","name":"tv","category":"tech","cost":"30"}]
我已经阅读了有关迭代数组的jade文档,并且我认为对于JSON来说,它是相同的,但是它不起作用。它只是显示一个空白。当我尝试这个
extends layout block content div#wrapper p #{results}
它将显示JSON文档。但是当我尝试这个
extends layout block content div#wrapper p #{results.name}
并显示空白。应该显示的时间是“电视”。如果有人可以帮助我理解迭代JSON文档,那就太好了。
谢谢!
在您的代码中,您无需遍历results数组,请这样做,因此您应该执行以下操作:
results
for result in results p #{result.name}