You need to serialize your server side Jade variables into client side
variables. One way to do this would be trying something like this in your
Jade view/template before you include your external JavaScript file...

script.
    var title = !{JSON.stringify(title)};

Colin


On Mon, Apr 21, 2014 at 12:16 PM, Ryan Schmidt
<[email protected]>wrote:

>
> On Apr 21, 2014, at 13:57, Evgeny Nepomnyashchiy wrote:
>
> > I pass some parameters to jade renderer, example is res.render('add',
> {title: "Hello"}). On client-side I have external JS-file, how can I get an
> access to the title param? Code console.log(name) gets me undefined value.
>
> Those variables you pass to res.render are for you to use in the
> server-side jade file. They're not made available to the client-side web
> browser's JavaScript engine.
>
>
> --
> --
> Job Board: http://jobs.nodejs.org/
> Posting guidelines:
> https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
> You received this message because you are subscribed to the Google
> Groups "nodejs" group.
> To post to this group, send email to [email protected]
> To unsubscribe from this group, send email to
> [email protected]
> For more options, visit this group at
> http://groups.google.com/group/nodejs?hl=en?hl=en
>
> ---
> You received this message because you are subscribed to the Google Groups
> "nodejs" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> For more options, visit https://groups.google.com/d/optout.
>

-- 
-- 
Job Board: http://jobs.nodejs.org/
Posting guidelines: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"nodejs" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to