Dwr 和脚本会话失效
我们在基于 DWR 2.0.6 的应用程序中使用反向 ajax 和轮询。问题是,当我们离开反向 ajax 设置为 true 的页面时,我们希望 ScriptSession 失效。默认情况下不会发生这种情况。 在 DWR 3.0 的文档中提到我们可以调用 dwr.engine.setNotifyServerOnPageUnload(true);在我们的js文件中
但这在2.0.6中不可用。 有什么想法建议等吗?
We are using reverse ajax with polling in our DWR 2.0.6 based application. The problem is that when we move away from a page where reverse ajax was set to true, we want that ScriptSession to be invalidated. It does not happen by default.
In the docs for DWR 3.0 it is mentioned that we can call dwr.engine.setNotifyServerOnPageUnload(true); in our js file
But this is not available in 2.0.6.
Any ideas suggestions etc.?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用“onbeforeunload”处理程序手动编写此内容。
You could write this manually, using an "onbeforeunload" handler.