Skip to content

Instantly share code, notes, and snippets.

@craftgear
Last active December 17, 2015 20:39
Show Gist options
  • Save craftgear/5669101 to your computer and use it in GitHub Desktop.
Save craftgear/5669101 to your computer and use it in GitHub Desktop.
expressでミドルウェアもしくはイベントハンドラでセッションの値を参照する
//ミドルウェアでやる場合
app.configure(function(){
//・・・(略)・・・
app.use(function (req, res, next) {
app.locals.message = req.session.message;
next();
});
//・・・(略)・・・
});
//イベントハンドラでやる場合
app.post('/hoge', function(req, res){
res.locals.message = req.session.username;
res.render('hoge');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment