如果页面关闭,我想发送$ http.get。然后我磕磕绊绊地解决了一个问题 promises无法解析,因为如果最后一个方法返回,页面就会被破坏。
以下不起作用,因为onbeforeunload无法解析promises /不等待它们:
window.onbeforeunload = function(
$http.get('http://someth.ing/update-state?page=unloaded').then(function(){
// never called... never sent...
}
}
我知道,你可以使用默认的同步HTTP方法,但问题通常是我们如何同步/等待promises在这里解决。
我的想法是这样的:
window.onbeforeunload = function(){
var ready = false;
$http.get('http://someth.ing/update-state?page=unloaded').then(function(){
ready=true;
}
// I don't see any other opportunity to sync a promise here than this:
while(!ready) angular.noop();
// big question: did $http call the server now? Can we finally return in this method to let the browser 'exit' the page?
}
RFC
答案 0 :(得分:2)
你有两个问题:
那么如何在这些限制范围内工作呢?您有几个选择:
使用ServiceWorker在页面终止后继续工作。同样,我建议在处理onbeforeupload之前创建,重新绑定和激活worker。在onbeforeupload处理期间 - 您希望postMessage
给您的员工,要求它为您做一些工作。此选项附带2个警告: