window.onbeforeunload不会在Android Chrome上触发[alt。解?]

时间:2016-03-03 17:48:48

标签: javascript android angularjs google-chrome

我开发了一个简单的聊天应用程序,当有人关闭标签/浏览器时(基本上当用户离开房间时)我使用$window.onbeforeunload通知其他用户。

这是我的代码

$scope.onExit = function() {
        $scope.chatstatus.$add({
            status: $scope.getUsername + ' left'    
        });
    };

    $window.onbeforeunload =  $scope.onExit;

这在桌面浏览器上运行得非常好,但在Android Chrome浏览器上却没有。 onbeforeunload函数根本没有被触发。

请建议解决方案/ 解决方法。感谢。

编辑:正如评论中提到的那样,这是一个已知问题,如果不是解决方案,请提出解决方法。

1 个答案:

答案 0 :(得分:0)

看起来你需要检查onbeforeunload和onunload。

这个答案看起来是一个很好的方法。

Android Chrome window.onunload

window.onunload = window.onbeforeunload = function() {
    var guid = sessionStorage.getItem("WindowGUID");
    var tmp = JSON.parse(localStorage.getItem("WindowGUIDs"));
    tmp = tmp.remove(guid);  // remove is a custom prototype fn
    localStorage.setItem("WindowGUIDs", JSON.stringify(tmp));
});