Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to render template to a variable instead to output?

res.render('list.ejs', {
    posts: posts
});

something like this

var list = render('list.ejs', {
    posts: posts
});
share|improve this question

2 Answers

up vote 8 down vote accepted

The easiest way to do that is to pass a callback to res.render, in your example:

res.render('list.ejs', {posts: posts}, function(err, list){
  // 
});

But if you want to render partial templates in order to include them in another template you definitely should have a look at view partials.

share|improve this answer
1  
i need to load partial by ajax in json response – xrado Oct 2 '11 at 11:29
so does this work? I don't want to actually render a page back to the user, I want to include the rendered string in a res.json() response. – chovy Oct 24 '12 at 6:16

I am quite a newbie on express.js, anyway I am not sure you can access the rendered string that way, although if you look at express' "view.js" source on github (here) you see that it's accepting a callback as second argument, if that may help: you may access the rendered string there.

Otherwise, I think it's quite easy to patch the code to add a method returning the rendered string without sending it: on line #399 you have the very call that gives the string you are looking for.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.