how to render json object in jade and loop through results

…衆ロ難τιáo~ 提交于 2019-11-26 22:44:10

问题


When I send a JSON string to a jade file for rending I'm only able to print out the string in it's entirety but not by it's elements. How do I print out specific elements or loop through the JSON string?

app.js:

var http    = require('http'), 
    express = require('express'),
    net     = require('net');

var app = express();

app.set('views', __dirname + '/views');
app.set('view engine', 'jade');
app.use(express.logger('dev'));
app.use(express.static(__dirname + '/public'));

app.get('/', function (req, res) {
    var json_string = {"action":"date +%s","result":"1367263074"};
    res.render('index', { layout : 'layout', json: JSON.stringify(json_string) });
})
app.listen(3000);

layout.jade:

!!!5
html
 head
  body
   p !{json}
   p !{json.result}
   p ---
    each val, key in json
     p #{key}: #{val}

expected output:

{"action":"date +%s","result":"1367263074"}
1367263074
---
action: date +%s
result: 1367263074

actual output:

{"action":"date +%s","result":"1367263074"}

---
0: {
1: "
2: a
3: c
4: t
5: i
6: o
7: n
8: "
9: :
10: "
11: d
12: a
13: t
14: e
15:
16: +
17: %
18: s
19: "
20: ,
21: "
22: r
23: e
24: s
25: u
26: l
27: t
28: "
29: :
30: "
31: 1
32: 3
33: 6
34: 7
35: 2
36: 6
37: 3
38: 0
39: 7
40: 4
41: "
42: }

回答1:


Why are you passing a string? Try this:

var ob = { action:"date +%s", result:"1367263074"};
res.render('index', { layout : 'layout', json: ob });

Or do this:

-var ob = JSON.parse(json)
-for(var prop in ob)
 p #{prop}: #{ob[prop]}



回答2:


On this line : each val, key in json You stringified your JS Object first (server-side), don't stringify it to get it as object.

So this line :

res.render('index', { layout : 'layout', json: JSON.stringify(json_string) });

becomes

res.render('index', { layout : 'layout', json: json_string });



回答3:


If you are looking for looping over an array of actions and results, then use Mathieu Amiot's suggestion plus this code:

each key in json   
    p !{key.action} !{key.result}


来源:https://stackoverflow.com/questions/16301258/how-to-render-json-object-in-jade-and-loop-through-results

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!