Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Express.jsルートでセッションを設定すると
app.get('/', function(req, res() { req.session.foo = 'bar'; });
他のルートではアクセスできません(未定義)。これは可能ですか?考慮しなければならない特別な構成はありますか?
ありがとう!
私は実際に次のようにセッションを設定するだけで解決しました:
global.session.email = JSON.parse(chunk).email;
これにより、セッション変数はグローバルです!
解決しました!