- 发布时间
前端访问时长监控
- 作者

- Name
- wenjuGao
- github
- @Github
前端访问时长监控
页面关闭时发送: 阻塞页面关闭:
- 阻塞式的 Ajax 请求
- 暴力的死循环
- 暴力的死循环
window.addEventListener('unload', function(event) {
var xhr = new XMLHttpRequest(),
xhr.setRequestHeader("Content-Type", "text/plain;charset=UTF-8");
xhr.open('post', '/log', false); // 同步请求
xhr.send(data);
});