0
votes
2answers
80 views

how to render json object in jade and loop through results

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 ...
0
votes
1answer
60 views

How to include a static JSON file for compilation with Jade and Grunt

how do I compile Jade templates to static HTML via Grunt where my data is already held in a JSON file? Say I have this Gruntfile.js module.exports = function(grunt) { ...
0
votes
1answer
67 views

Http get multiple json files from different API endpoints using node express

I'm looking into the most efficient way to get multiple JSON files from different API endpoints using node. Basically i'd like to store each JSON object in a variable, and send them all to Jade ...
0
votes
2answers
58 views

Accessing json objects within objects with Jade and express

I'm pulling my hair out a bit at the moment. I can't seem to figure out how to access the "media" content within the following json object using Jade. { "summary":"Jose Mourinho names his ...
0
votes
1answer
101 views

JSON / Jade - Cannot output JSON variable to Jade template

I'm passing some JSON data to a Jade template, but can't seem to print the JSON data to my Jade template. This is an example of the JSON which is stored and passed to the Jade template: { name: 'Team ...
0
votes
0answers
119 views

Passing data from Mongodb to view using Node

A Commonly asked question but I simply cannot get it to work, I'm trying to in the smoothest way possible pass all items that I get from my mongodb query to my Jade view 'index'. Preferably so that I ...
0
votes
0answers
127 views

Can't use Jade Mixin More Than Once

EDIT: Nevermind. Fixed and corrected in here. Was an indention issue in the Mixin. Will leave this up if anyone wants to try this. I'm attempting to use JSON to populate a navigation mixin and there ...
0
votes
1answer
67 views

How do I use a JSON variable as logic within a JADE template?

Sooooo, I have this JADE template: //views/user.jade div -if ( typeof(user) !== undefined ) { span <%= id %> -else { span nothing to see here -} This is how the page is rendered and ...
0
votes
1answer
745 views

Using Jade to iterate JSON

I am trying to iterate a JSON doc using JADE. my server(running node.js + express) is doing the following on a .get() request, app.get('/search/', function(req,res){ // Parse the query var ...
0
votes
1answer
1k views

How to iterate and parse JSON data in Node/Jade/Express views?

I am very new to Node and still in the beginning stages of understanding its use and power. I apologize if this question comes across as very simple or naive - I did due research before asking. In my ...
4
votes
2answers
5k views

Node.js JSON.stringify() causing &quot; in output. Can't parse with Jquery

I am using Node.js (with Express.js) to pass a JSON data object from the server to the client view. When I render the JSON object directly to the view I get the JSON object shown on the page as ...
0
votes
2answers
1k views

How do I output Jade content through JSON? (Node.js)

I wrote a video gallery web app a few months ago in CodeIgniter and I'm trying to move the back end to Node, using Express + Jade to produce the content. The PHP version sends JSON to the front end, ...
0
votes
1answer
367 views

Dynamic content from JSON data with Jade, HTML5 and jQuery

I'm getting a junk of JSON data and would like to work with that data without refreshing the site. There are two divs: items item If the user selects an item from the items list, div#item should ...
0
votes
2answers
527 views

Node > express > jade - forms templated sub objects

My question is with sub objects. lets have this example: tweets = [{id:1, title:"my tweet", author:{id:"sample", name:"Sample Guy"}}] ; ..etc now if i wanted to save that using express and jade, ...
17
votes
1answer
6k views

Passing objects to client in node + express + jade?

I have a pretty heavyweight query on the server that results in a new page render, and I'd like to pass along some of the results of the query to the client (as a javascript array of objects). This is ...