We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
beforeunload
window.addEventListener("beforeunload", function (event) { event.preventDefault(); // 有些浏览器需要设置 returnedValue event.returnValue = ''; });
unload
window.addEventListener("unload", logData, false); function logData() { // ... }
为了避免有些浏览器不支持,保证函数的执行,我们可以两个事件都监听。但是,为了避免重复,我们只想要函数执行一次,可以对函数做一些处理,比如
function once (fn) { let hasRun = false; return function () { if (!hasRun) { hasRun = true; fn(); } }; } const sendOnce = once(function () { // 这个函数只执行一次 }); window.addEventListener("beforeunload", sendOnce); window.addEventListener("unload", sendOnce);
如果直接发异步请求,页面关闭了,请求会被 abort 掉。所以传统的方法,是发同步请求。缺点是,请求会阻塞监听函数,导致页面的关闭和跳转十分缓慢。发同步请求一般有两种方案
<img>
src
Navigator.sendBeacon()
使用 sendBeacon() 方法会使用户代理在有机会时异步地向服务器发送数据,同时不会延迟页面的卸载或影响下一导航的载入性能。这就解决了提交分析数据时的所有的问题:数据可靠,传输异步并且不会影响下一页面的加载。此外,代码实际上还要比其他技术简单许多!
sendBeacon()
window.addEventListener('unload', logData, false); function logData() { navigator.sendBeacon("/log", analyticsData); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
如何在页面关闭时发送请求(by 宇清)
用途
监听事件
beforeunload
unload
两个都监听?
为了避免有些浏览器不支持,保证函数的执行,我们可以两个事件都监听。但是,为了避免重复,我们只想要函数执行一次,可以对函数做一些处理,比如
页面都关闭了还怎么发请求?
发送同步请求,推荐指数 👎
如果直接发异步请求,页面关闭了,请求会被 abort 掉。所以传统的方法,是发同步请求。缺点是,请求会阻塞监听函数,导致页面的关闭和跳转十分缓慢。发同步请求一般有两种方案
<img>
元素,然后把该元素的src
属性设置为请求的地址使用
Navigator.sendBeacon()
👍The text was updated successfully, but these errors were encountered: