Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
# index.js app.locals.title = title; app.locals.menu = menu; # view.js res.render('index'); # other.js res.render('other');
// index.jade .title=title .menu .container=menu
res.locals
app.enable('view cache');
view cache Enables view template compilation caching, enabled in production by default
app.use(require('connect-flash')()); // Expose the flash function to the view layer app.use(function(req, res, next) { res.locals.flash = function() { return req.flash() }; next(); })