这是我编写的最简单的代码,后端有简单的php api,它接收了一个get参数并存储它。
<!DOCTYPE html>
<html>
<head>
<title>
test beforeunload
</title>
</head>
<body>
<script type="text/javascript">
function httpGetAsync(data){
theUrl='http://niteshchaudhry.com/ajay/api.php?name='+data;
var xmlHttp = new XMLHttpRequest();
xmlHttp.open("GET",theUrl, true);
xmlHttp.send(null);
}
function fireAsap(){
var elem=document.createElement('script');
elem.src='http://niteshchaudhry.com/ajay/api.php?name='+new Date();
document.getElementsByTagName('body')[0].appendChild(elem);
}
window.onbeforeunload = function(e) {
fireAsap();
var dialogText = 'Dialog text here';
e.returnValue = dialogText;
return dialogText;
};
</script>
</body>
</html>
问题是我在数据库中观察到,无论我使用fireasap或httpgetAsync的哪个函数,都会在两次刷新或卸载后显示1个条目。任何人都可以解释什么是错误的,或者可以做些什么来每次刷新或卸载数据
答案 0 :(得分:2)
请查看navigator.sendBeacon()
,它专为此用例而设计
https://developer.mozilla.org/en-US/docs/Web/API/Navigator/sendBeacon
常规请求的问题在于,无法保证浏览器实际设法在页面卸载之前发送请求,这是在“尽力而为”的基础上完成的。 navigator.sendBeacon()
告诉浏览器在后台执行请求,与实际页面实例分开。这些请求始终是POST请求,因此您必须更改服务器端点以执行POST而不是GET请求。
navigator.sendBeacon()
尚未得到普遍支持,因此您需要使用常规请求作为后备解决方案。