0
votes
1answer
12 views

Access mongoose non-schema values in Jade

I have a really weird problem in Jade where I cannot access the values that aren't defined in the Schema. I'm using strict:false on my schema and saving values to it. My data looks like this: { ...
2
votes
1answer
45 views

Jade, Why variables are sent in single quotes in one case and unquoted in another?

I put some data from MongoDB into a Jade template as simple as this: span(data-id=job._id) span= job._id But for some reason I get first span int the output HTML markup looking like <span ...
0
votes
1answer
19 views

How can I loop through docs to send a lot of mongojs data to a jade template?

So, I'm using mongojs. To get values into a rendered view, it was my understanding that one had to do something like this: app.get('/someurl', function(req, res) { ...
1
vote
3answers
342 views

How to create an MVC form using MongoDB, Node.js(+express) and Jade

I've been tasked with creating a simple CRUD app using the above stack. However, my lack of knowledge with it might be preventing me from doing things in an easier fashion. My main concern is with ...
0
votes
0answers
117 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
2answers
162 views

Mongodb querying nested objects

My Object is like, { "Team-A": { "captain": "A", "homeGround": "some ground", "winLoss": "12-4-0" }, "Team-B": { "captain": "B", "homeGround": "some ...
0
votes
2answers
40 views

Weird scope behavior in node or am I sleeping?

My js is as follows, /* * GET home page. */ var MongoClient = require('mongodb'); exports.index = function(req, res){ var studentObj = {}; ...
0
votes
2answers
196 views

What is the most reliable and popular Node.js templating engine? [closed]

Node noobie questions I hope someone wise can help answer: 1) What is the most reliable and popular Node.js templating engine? I'm using Express and I'm thinking of either Jade or EJS(Embedded ...
0
votes
1answer
79 views

How to use a jade template to accept information from multiple sources and display with include statements

I have this template: .bar .titleBox a.title(href=URL) #{title} Which I want to include multiple times in another page, titles.jade, like so: #contentBox include bar include bar ...
1
vote
1answer
142 views

Best way to display an error Express, Jade and Mongo

What is the best way to pass a warning message through to a view with Express & Jade? I have created a login system that checks a password entered against one stored within the Mongo Database, it ...
0
votes
1answer
129 views

How to display mongoose date in HTML5 date type

I have a MongoDB schema like this var Person = new Schema({ "Name": { type: String, required: true }, "DOB": { type: Date, "default": Date.now } }); And a new object is created( ...
0
votes
1answer
726 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 ...
1
vote
1answer
283 views

ExpressJS: Retrieving images from MongoDB and displaying them in Jade

I am looking for good ways to retrieve images from MongoDB and display them. For example, to retrieve a profile picture and display it on a profile page, this is how I am currently doing it: profile ...
2
votes
1answer
276 views

How can I store site configuration in MongoDB for a NodeJS Express App?

I have an Expressjs app running on NodeJS 0.8.8 using MongoDB and the Jade template language, and I'd like to allow the user to configure many of the site-wide presentation options such as the page ...
1
vote
2answers
260 views

Display Mongodb collection in jade template

I'm new in node.js and mongodb. I set a mongodb collection called "article". I would like to display all the article of this collections in a jade template. I used this code : server.js: articles: ...
3
votes
1answer
542 views

Get data from mongodb (mongoose) to jade view

I'm stuck trying to get mongodb data in my jade views. I'm a newbie with node.js and I apologize if this seems stupid! I can see what's in my table in the console: Material.find(function (err, ...
0
votes
1answer
508 views

passing data between server and client (node.js + mongodb)

I'm working with node.js express and mongodb, I have a input data from client, I need to pass the data to server look for its property and send to the client in another page. Now I have problem with ...
0
votes
2answers
304 views

How to output data at client side? (express+monogdb+jade)

I'm trying to displpay the data I retrieved from database(I'm using node.js express and mongodb), however the data I need successfully shows in the console, but I need to output it at the front-end ...
0
votes
1answer
108 views

what's the best way to bind a mongodb doc to a node.js html page

In past with my PHP / Rails - MYSQL apps I've used the unique ID of a table record to keep track of a record in an html file. So I'd keep track of how to delete a record shown like this (15 being the ...
3
votes
3answers
344 views

How to display arbitrary, schemaless data in HTML with node.js / mongodb

I'm using mongodb to store application error logs as json documents. I want to be able to format the error logs as HTML rather than returning the plain json to the browser. The logs are properly ...
1
vote
2answers
2k views

Return mongojs query result from function

I made the function below for getting usernames from ids. It is not working well. I can write console.log(result.first_name); within the query function, and the usernames shows up in my terminal, but ...
2
votes
2answers
2k views

Render Image Stored in Mongo (GridFS) with Node + Jade + Express

I have a small .png file stored in Mongo using GridFS. I would like to display the image in my web browser using Node + Express + Jade. I can retrieve the image fine e.g.: ...
1
vote
1answer
226 views

Mongoose questions about routing and creating new objects

I am new to Node, and I'm using Mongoose as a driver for MongoDB. I'm using Jade for my views. My "Edit" views and my "Show Object" views are looking great. However, I'm getting an "object is not ...
2
votes
2answers
214 views

Error In Rendering Jade Files

I get an error while rendering the Jade file. The code that I use in app.js is: app.get('/photos/new' function(req, res) { res.render('/photos/new', { locals: { photo: new ...
3
votes
1answer
822 views

Node/Express/Mongo: How do I render HTML attributes from dynamic content?

I have made a simple blog using Node/Express/Mongo/Jade (and/or HAML.js). I used (and slightly updated) the blog app from this tutorial, which itself an update of one from howtonode.org I can render ...