0

我想在会话破坏时执行一些操作。我正在为我的应用程序使用 senchalabs 的连接模块和 express 模块。

4

1 回答 1

1

session#destroy方法不会发出任何您可以在应用程序的其他部分监听的事件,但如果您想在会话被销毁后立即运行某些代码,您可以将其包含在回调中。

// Example variable
var numOfUsersOnline = 100

req.session.destroy(function(err){
  // This get's run right after the session gets destroyed.
  // You can put any code you want run in here, for example

  // Descrease the number of users online
  numOfUsersOnline--;
});
于 2012-09-07T00:01:12.657 回答