Express 3.0 アプリ用のヘルパー メソッドを作成しようとしています。ユーザーに挨拶する例を次に示します。
app.locals.greet = function(req,res) {
return "hey there " + req.user.name;
}
ただし、その関数内req
でres
は使用できません。jade テンプレート内で使用できるヘルパーを作成するにはどうすればよいですか? 私はこれを間違っていますか?
Express 3.0 アプリ用のヘルパー メソッドを作成しようとしています。ユーザーに挨拶する例を次に示します。
app.locals.greet = function(req,res) {
return "hey there " + req.user.name;
}
ただし、その関数内req
でres
は使用できません。jade テンプレート内で使用できるヘルパーを作成するにはどうすればよいですか? 私はこれを間違っていますか?
ルーターが render メソッドを呼び出す前に、 req
/オブジェクトを使用してこれらの値を設定するミドルウェア関数/ハンドラーを追加する必要があります。res
同様に、このハンドラーは、知っておく必要のある情報が定義された後に定義する必要があります。(つまり、セッションミドルウェアの後)
// AFTER sessions/auth/etc -- app.use(express.session(...))
app.use(function (req, res) {
// set any locals using req/res
res.locals.user = req.user;
res.locals.greet = function () {
return "hey there " + req.user.name;
}
});
// BEFORE router -- app.use(express.router);
詳細については、 res.localsの API ドキュメントを参照してください。
私の設定app.js
ファイルを見てください!変数はそのコンテキストで使用できるようになるため、これはうまくいくはずです。
app.configure(function(){
app.set('views', __dirname + '/views');
app.set('view engine', 'jade');
app.use(connect.compress());
app.use(express.static(__dirname + "/public", { maxAge: 6000000 }));
app.use(express.favicon(__dirname + "/public/img/favicon.ico", { maxAge: 6000000 }));
app.use(express.bodyParser());
app.use(express.methodOverride());
app.use(express.cookieParser());
app.use(express.session({
secret: config.sessionSecret,
maxAge: new Date(Date.now() + (1000 * 60 * 15)),
store: new MongoStore({ url: config.database.connectionString })
}));
app.use(function(req, res, next){
console.log("\n~~~~~~~~~~~~~~~~~~~~~~~{ REQUEST }~~~~~~~~~~~~~~~~~~~~~~~".cyan);
res.locals.config = config;
res.locals.session = req.session;
res.locals.utils = viewUtils;
res.locals.greet = function(){
//req and res are available here!
return "hey there " + req.user.name;
};
next();
});
app.use(app.router);
});
以下は、ヘルパー関数で を使用する方法を示す簡単な例の 3 つの部分ですreq.locals
。
app.locals.greet = function(user) {
return "hey there " + user.name;
}
h1= greet(user)
function(req, res) {
res.render('myview', {user: req.user});
};