Tagged Questions
0
votes
2answers
22 views
Jade variable attribute names
I have a variable called current which is used to set the checked value of an html input
so current can be either '' (blank) or checked=true
Since you cant set HTML attributes to false, I can't do ...
0
votes
1answer
9 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:
{
...
0
votes
0answers
25 views
Express & Jade - max Block Nesting
i use Express 3x + Jade + bootstrap +..etc
my block/extend structure looks like this
.layout.jade (only head stuff)
.topNav.jade (only top nav)
.sideNav.jade (sideNav and control center interface) ...
1
vote
2answers
31 views
MongoDB query from node.js (express-coffeescript-mongodb)
I'm new to database queries with noSQL databases and have a quick question.
Essentially I want to retrieve the 'name' of all fields that have 'publishedImage' set to 'true'. I would like to store ...
0
votes
1answer
56 views
Make rest call from express
Currently struggling with a issue with express, node.js (and mongoose). I have set up a lot of REST functions that I can redirect to that is working.
From my app.js:
app.get('/users', user.list);
...
0
votes
1answer
24 views
Date picker in Jade
I am stuck trying to get a datepicker to work using Jade. Framework is node.js and express.
I load the javascripts in index.jade like this:
link(type='text/css', ...
0
votes
1answer
22 views
Title not defined…node.js, express,jade, twitter bootstrap
Im currently trying to learn node.js and I am working with express and jade. I am trying to get twitter bootstrap working but am running into issues... here is my error:
ReferenceError: ...
0
votes
3answers
38 views
Node.js Express + Jade (Active Class on Lined Item)
How would I set an active tag to a class depending on the URL?
In the example below '/' (Home) is set to active.
.nav-collapse.collapse
ul.nav.top-2
li.active
a(href='/') Home
li
...
0
votes
1answer
18 views
Using a global wrapper template in Express/Jade
I've had a quick skim of the Jade documentation and I can't seem to figure out how to apply a wrapper to all templates that I output.
How is this usually done?
0
votes
1answer
23 views
Why aren't all my images showing?
I'm using Express.js with Jade and running into an issue. I've got 6 images but 2 of them won't show up on the page. I can go to local:3000/images/a.png and see them all but not see them on my page? ...
0
votes
1answer
32 views
How do you set jade basedir option in an express app? (the “basedir” option is required to use “extends” with “absolute” paths)
Going through the peepcode nodejs video and recreating the app on the current express/node versions I've ran into a small issue.
file structure
site
- apps
- - authentication
- - - views
- - - - ...
0
votes
1answer
16 views
How to return a / respond with (java)script from express.js using JADE
I'd like to respond to ajax calls on my express.js application with javascript scripts that will be evaluated in the client. How do I handle that with JADE as the template to construct these scripts ...
1
vote
2answers
61 views
Passing the request object to jade in express.js
What could be wrong with passing the request object to the jade renderer?
This seem like a simple way to work. Especially as express.js already uses the request object as a vehicle from append data ...
2
votes
2answers
90 views
Express/Node.js : Render custom javascript as response
In my application, I need to provide an API (something like the Google Maps javascript API), through which I can send some custom javascript (with some session and request related information) as the ...
0
votes
1answer
32 views
Attach helpers to Jade when running client side (in browser)
I have made a single page app powered by node js (Express) with a mongo db. I have used jade for templating and have some templates rendered in the browser. The templates render fine except I am ...
0
votes
1answer
25 views
jade layouts failing to extend
I cannot get jade files to properly extend each other. Here is my index.jade file:
!!! 5
html(lang='en')
head
... scripts and stuff here...
body
include navbar
div.cont
...
0
votes
0answers
37 views
Cordova JS file not loading using Jade Template Engine with Express and Node
I have an Android Phonegap applications which on its WebView displays content from a node.js server. Now, because I am testing some code triggering based on Location Based Services, it is important ...
0
votes
1answer
156 views
node.js angular jade client and node.js rest api
Are there any good examples or guidance anyone can provide for structuring an app like this?
Client (client.company.com)
Node.js
Angular
Jade
ExpressJS
Server (private) (server.company.com)
...
0
votes
2answers
65 views
How do I load phonegap/cordova with jade?
I am developing a Web Application using node.js, express and jade. I have the following jade template which I am seeing using a WebView in a Phonegap application:
doctype mobile
html
head
...
0
votes
1answer
18 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) {
...
0
votes
2answers
72 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
33 views
Jade: How to extend base-templates based on value of a variable
I have two "master-templates" called ios.jade and android.jade plus multiple "child-templates" that should extend either ios.jade or android.jade based on the value of a variable. Unfortunately I ...
0
votes
2answers
32 views
How to view uploaded pictures in jade
I was wondering how to view an uploaded picture in jade here are some of my code sample's below
Uploading The Image
app.post('/add', function (req, res, next) {
var person = new Person({
...
0
votes
1answer
42 views
node.js render method
My question is very simple. I am using the node.js with express and jade view engine.
When I render some file and send in field of object HTML tags, in the file I get a funny laughableness. For ...
0
votes
1answer
62 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 ...
1
vote
3answers
52 views
How can I embed a CSRF token in a JavaScript file?
I have a Node.js application in which I have implemented CSRF. It's working fine, and when I had some JavaScript inline in a JADE file, I simply used #{token} to get the token into the JavaScript.
...
0
votes
2answers
52 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 ...
2
votes
3answers
114 views
How to use NodeJS + ExpressJS to pass an array to Jade for display?
I come from a very "functional" style of programming (PHP, Lua, C) and I'm trying to transition my thinking to the MVC model NodeJS uses. Currently, this is a very steep learning curve for me.
I've ...
0
votes
2answers
62 views
How to render precompiled jade templates in a nodejs express app?
I have a nodejs app that uses Express and Jade.
I want to precompile the jade templates for better performance. I have been able to convert the jade to javascript using jade --client to compile all ...
1
vote
1answer
45 views
Render array passed from Express with Jade
Most of the questions pertaining to this all seem to be about passing the server-side JS object into a client-side JS object. Maybe I'm missing something, but all I want to do is render HTML using the ...
0
votes
0answers
80 views
Bootrstrap in Express.js with LESS: include bootstrap folder in public/lib/?
I am totally a beginner in Express.js, and I am trying to build a simple website using Express,js, Jade and Less. The way I created my folder project is:
$ mkdir myProj
$ cd myProj
$ express ...
1
vote
1answer
120 views
Angular.js - Redirection not working
I have somes difficulties to understand the behavior of Angular.js routing
Here is my code
my app.js:
'use strict';
var app = angular.module('myApp', []).
config(['$routeProvider', ...
0
votes
1answer
104 views
Is it considered bad practise to use HTML in Jade?
Jade looks like a cool templating engine and I think I'll be using it for my next project. However, some of the syntax doesn't make sense to me.
What do you get by doing this:
ul
li
...
0
votes
0answers
42 views
how to change layout in express js from back-end using jade template engine
for example
i have this file:
app.get('/foreach',function(req,res){
res.render('home/foreach');
});
which render page below:
extends ../shared/layout
block content
...
4
votes
1answer
174 views
Using jade with wysiwyg markdown to allow users to edit content
I believe don't re-invent the wheel unless you absolutely have to. So I don't want to start coding away something that has already been coded, or a lot of people are contributing to it already.
I ...
0
votes
1answer
28 views
Duration of Video in Express.js: NaN
I am trying to get the total duration of a video, in Express.js. Below I have shown my Code in Jade. Initially I include the video in the webpage.
video(width='320', height='240', ...
0
votes
0answers
76 views
How to encode decoded-html in Node.js?
I'm playing around with Node.js and have connected to my mysql-database and are fetching
some blog-records, but the contents are decoded html in the db. I can't seem to encode.
I've tried it in the ...
0
votes
1answer
71 views
express app throwing error while displaying dynamic chart using flot in the jade client
While trying to display the realtime data using flot chart, I am getting the following error in the client code
Uncaught Invalid dimensions for plot, width = 1584, height = 0
Cant figure out why ...
0
votes
1answer
51 views
Unable to load installed module in the jade client
Can anyone please point out why I am getting 404 error when loading the socket.io module in the client side ? I think something is wrong in the way I am calling the socket.io module in the layout.jade ...
0
votes
1answer
96 views
Express.js: Validation of forms with text boxes and buttons
I am working with forms in Express.js and I am using express-validator for validation. The code I have shown below is a "form" with two text boxes, a choose file button and a submit button. When the ...
0
votes
2answers
51 views
Jade: text box change the value = “ …”
I am extremely beginner in Jade and Html and I am trying to build a form in Jade. The problem I am having is with a basic text box as follows:
input(type='text', name='sessionID', value = 'valueID')
...
0
votes
1answer
94 views
Node.js, Express, Jade - Seperate layout files
I'm working on some project with Node.js, Express and Jade, where I'd like to seperate layout files. Inside the main file is already seperated header, but I don't know how to do this for sublayout ...
0
votes
1answer
37 views
Automatically send object to every res.render()
I have a config object that I want to use in pretty much every view on my express appplication. It looks something like this:
{
"url" : "http://whatever.com",
"more" : "yadda yadda"
}
I want to ...
0
votes
1answer
18 views
jade if behaving inconsistent
I am using expressjs, I have in my app the following:
app.get('/profile',index.profile);
app.get('/',index.home);
and in layout.jade
...
if typeof(username)!=='undefined'
li: ...
0
votes
1answer
37 views
How to reduce code duplication in jade?
I am a beginner to both web development and node.js. I am trying to build a very basic news website with node.js and express. In the home page, I hope to display some featured news, and in the page ...
2
votes
1answer
65 views
res.render, res.write and Jade
I'm trying to make simple ftp client in Node.js. Everything works fine, but I don't know how to write "singleFile.name" in my Jade template.
app.post('/ftp/login', function(req, res){
...
0
votes
1answer
53 views
How to do complex conditionals or regex in jade
I'm having an interesting challenge and can't figure out how to go about solving it. I'm pulling a list of subscribers from my mailchimp and populating a members' page on my website with the data. One ...
1
vote
1answer
40 views
Set page title from a child template in Jade
I'm wanting to set my page titles in the child templates of the layout via jade. I don't want to set them in the routes since that requires a server restart. Here's what I'm hoping to accomplish:
...
1
vote
3answers
328 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
1answer
33 views
Concatenating Partial Path in Jade Template
I have a Jade template on an Express project that looks something like this (simplified for brevity):
!!! 5
head
...
body
include path/to/partial
What I am trying to figure out is ...
