如何在 nodejs 中创建像 TempData 这样的对象?我想也许我可以将标志“IsTempData”设置为会话,并在应用程序结束时清除选择了该标志的会话。但是有一个问题:我有很多使用 tempdata 的异步函数,所以应用程序可能会在我使用 tempdata 之前结束。我希望你明白我所说的结束申请是什么意思:
connect()
.use(connect.bodyParser())
.use(connect.query())
.use(connect.favicon())
.use(connect.cookieParser())
.use(connect.session({ secret: 'your secret here' }))
.use(function (req, res) {
somefunction();
// end of application, here I will clear sessions which have tempdata flag selected
}).listen(1234);