私はテンプレートシステムで使用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
両方のビューについて、一般的に変数を宣言するにはどうすればよいですか?