我开发了一个简单的聊天应用程序,当有人关闭标签/浏览器时(基本上当用户离开房间时)我使用$window.onbeforeunload
通知其他用户。
这是我的代码
$scope.onExit = function() {
$scope.chatstatus.$add({
status: $scope.getUsername + ' left'
});
};
$window.onbeforeunload = $scope.onExit;
这在桌面浏览器上运行得非常好,但在Android Chrome浏览器上却没有。 onbeforeunload
函数根本没有被触发。
请建议解决方案/ 解决方法。感谢。
编辑:正如评论中提到的那样,这是一个已知问题,如果不是解决方案,请提出解决方法。
答案 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));
});