几天前我做了这个问题(页面刷新后Java会话被删除),但我没有答案。可能是因为问题出在 onbeforeunload 事件中。和:
<body onbeforeunload="chiudi()">
我想步枪会议。
问题是,如果用户刷新页面,这样会话也会被刷新。我该如何解决?
这是我的 javascript 函数 chiudi()
function chiudi(){
var xmlHttp = new XMLHttpRequest();
xmlHttp.open("POST", "SvuotaSession", false);
xmlHttp.setRequestHeader("Content-type",
"application/x-www-form-urlencoded");
xmlHttp.send(null);
}