0

我的要求是为每个用户提供一个登录权限,为此,我已在用户登录时将登录状态更新为 db 中的 true,并在用户注销时更新为 false。但问题是当用户关闭窗口而不注销时。

为了处理窗口关闭,我实现了以下 js 代码

 var validNavigation = false;

 function wireUpEvents() {

  var dont_confirm_leave = 0; 
   var leave_message = 'You sure you want to leave?'
  function goodbye(e) {
    if (!validNavigation) {
     if (dont_confirm_leave!==1) {
         if(!e) e = window.event;
       //e.cancelBubble is supported by IE - this will kill the bubbling process.
       e.cancelBubble = true;
        e.returnValue = leave_message;
       //e.stopPropagation works in Firefox.
        if (e.stopPropagation) {
         e.stopPropagation();
         e.preventDefault();
          }
        //return works for Chrome and Safari
        return leave_message;
      }

      window.location = "logout.jsp";
    }
  }
  window.onbeforeunload=goodbye;

   // Attach the event keypress to exclude the F5 refresh
  $(document).bind('keypress', function(e) {
    if (e.keyCode == 116){
      validNavigation = true;
    }
  });

  // Attach the event click for all links in the page
  $("a").bind("click", function() {
    validNavigation = true;
  });

  // Attach the event submit for all forms in the page
  $("form").bind("submit", function() {
    validNavigation = true;
  });

   // Attach the event click for all inputs in the page
  $("input[type=submit]").bind("click", function() {
    validNavigation = true;
  });

  // Attach the event click for all inputs in the page
 $("input[type='button']").bind("click", function() {
   validNavigation = true;
 });

}

// Wire up the events as soon as the DOM tree is ready
$(document).ready(function() {
 wireUpEvents();
});

在这里它适用于窗口关闭,意味着如果用户关闭窗口它会进入注销页面,但问题是当用户重新加载页面时它会退出页面。

所以我需要像上面的 f5、提交和锚标记的 js 代码一样绑定重新加载事件。

请在这方面帮助我。

提前致谢...

4

1 回答 1

0

我想到了两件事:

首先,用户登录这一事实并不意味着有任何活动正在进行,有些人离开那里时,电脑在浏览器运行的情况下打开。

其次,即使用户关闭了一个页面,它也不一定意味着他/她想要注销,如果用户使用两个选项卡在您的网站上导航,则尤其如此。

因此,与其尝试检查他们何时关闭选项卡,我建议考虑仅在他们从其他地方登录和/或设置一个计时器以在一定数量的不活动后自动将其注销的想法。

于 2013-09-13T07:17:22.450 回答