1

我正在使用Node.jsExpress框架)创建一个网站并使用Passportjs进行身份验证。我使用socket.io在客户端和服务器之间进行通信。我的网站显示哪些用户在线。我想要的是当客户关闭他的标签或浏览器本身而不注销网站时,我希望用户在'disconnect'事件触发时从网站注销。代码片段应该看起来像在server一边。

io.sockets.on('connection', function (socket) {
socket.on('disconnect', function()  {
    console.log("|||||| DISCONNECTED ||||||");
    //LOGOUT USER CODE
});
});

我正在使用 Passportjs 的本地策略。它在 CouchDB 数据库中搜索用户,如果用户名/密码组合正确,则登录。

我的解决方案显然不起作用:

app.configure(function() {
  app.set('views', __dirname + '/views');
  app.set('view engine', 'ejs');
  app.use(express.logger());
  app.use(express.cookieParser());
  app.use(express.bodyParser());
  app.use(express.methodOverride());
  app.use(express.static(__dirname + '/'));
  app.use(express.session({ secret: 'keyboard cat'}));
  // Initialize Passport!  Also use passport.session() middleware, to support
  // persistent login sessions (recommended).
  app.use(passport.initialize());
  app.use(passport.session());
  app.use(app.router);

  //a new custom middleware to logout the user when the pathname is '/exit'      

  app.use(function(req, res, next)  {
      var pathname = url.parse(req.url).pathname;
      if(pathname == '/exit')
        req.logout();
      next();
  });
});

我使用了一个像这样定义的节点模块xmlhttprequest来创建 http 请求。

var XMLHttpRequest = require("xmlhttprequest").XMLHttpRequest;

然后在我的套接字的断开连接事件中,我添加了以下几行。

io.sockets.on('connection', function (socket) {
socket.on('disconnect', function()  {
    console.log("|||||| DISCONNECTED ||||||");
    var xhr = new XMLHttpRequest();      
    xhr.open("GET", "http://localhost:3000/exit");
    xhr.send();
});
});

这不起作用,并且在disconnect事件触发时用户不会注销。|||||| DISCONNECTED ||||||我可以在控制台上看到这条消息。此外,如果我http://localhost:3000/exit在浏览器地址栏中输入,然后按 Enter,我会看到以下消息:Cannot GET /exit在我的浏览器中,但在按回并刷新页面时,用户已注销。

4

1 回答 1

0

这段代码不好。

 app.use(function(req, res, next)  {
      var pathname = url.parse(req.url).pathname;
      if(pathname == '/exit')
        req.logout();
        //try adding this line, so that it doesn't just show the "can't retrieve"
        res.end('<html><head>logged out</head><body>logged out</body></html>');
      next();
  });

编辑:

socket.on('disconnect', function()  {
    console.log("|||||| DISCONNECTED ||||||");
    var xhr = new XMLHttpRequest();      
    //this won't work, don't do this
    xhr.open("GET", "http://localhost:3000/exit");
    xhr.send();
});

相反,这样做:

socket.on('disconnect', function()  {
    console.log("|||||| DISCONNECTED ||||||");
    user.logout();
});

我建议此时从页面进行重定向,退出,并让 exit 将另一个重定向发送到另一个页面。我就是这样做的。

于 2012-08-07T14:12:38.850 回答