我正在使用node.js
和Jade
模板系統。node.js中Jade模板的全局變量
假設,我有這些路由規則:
// ./routes/first.js
exports.first = function(req, res)
{
res.render('first', {
author: 'Edward',
title: 'First page'
});
};
// ./routes/second.js
exports.second = function(req, res)
{
res.render('second', {
author: 'Edward',
title: 'Second page'
});
};
而且這些虛擬的觀點:
// ./views/first.jade
html
head
title #{author} – #{title}
body
span First page content
// ./views/second.jade
html
head
title #{author} – #{title}
body
span Second page content
我怎樣才能申報一般author
變量,這兩種觀點?
重複http://stackoverflow.com/questions/4718818/express-js-view-globals的 –