Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当用户无操作退出到其他页面时,管理退出或退出事件的更好解决方案是什么?此事件只需触发一次,用于删除所有在放弃此页面后未存储的临时文件或数据。非常适合用作服务器端的清洁方法。谢谢。
网络是无状态的,所以不应该真的有任何东西需要清理。但是,有时您可能希望在用户尝试关闭浏览器时终止会话。我想您可以捕获该事件,然后在关闭窗口之前调用服务器(使用 AJAX):
如何捕获浏览器窗口关闭事件?
虽然恕我直言,但不是 100% 可靠!