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

I would like to display a new page without starting a new socket instance. Here is what I'm doing.

app.configure(function(){ 
    app.set('port', 8080);
    app.set('views', __dirname + '/views');
    app.set('view engine', 'ejs');
    app.use(express.static(path.join(__dirname, 'public')));

});


io.sockets.on('connection', function(socket){
    app.render('board' , { option : 'somestuff'} , // line with type error
       function(err, html) {
            console.log(html); // outputs html with option values inserted 
       }
);

I cannot get the page to render and the console is giving me this error

[ERROR] TypeError
TypeError: undefined is not a function

However this does not seem right as the documentation tells me this is the correct syntax and when I attach it to app.get('/', function(req, res) { /*same code but res.render instead */ }); it works just fine. Also when I log the html to the console I get the correct page with the options placed into the template.

What am I doing wrong?

share|improve this question
probably a spelling mistake but in app.render callback you have funtion instead of function – soulcheck Dec 20 '12 at 17:41
also make sure you have 'board' view in your views directory – soulcheck Dec 20 '12 at 17:45
What version of express are you using? Which line actually throws the error? Is app.render the part that is undefined? console.log(app.render). – loganfsmyth Dec 20 '12 at 18:35
I'm using express 3.x and board.ejs is in my views directory. console.log(app.render) returns [Function] – Loourr Dec 20 '12 at 19:20

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.