在tiles中刷新jsp
我正在使用 jsp 和图块创建一个网页。我的问题是我的tiles页面中有一个timer.jsp属性,它的作用就像一个倒计时器。我希望它的值在刷新页面时保持不变。无论如何我可以做到这一点吗?
I am creating a webpage using jsp and tiles. My issue is that I have a timer.jsp attribute in my tiles page which acts like a countdown timer. I want its value to remain unchanged on refreshing the page. Is there anyway I can do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了在刷新时保留客户端计时器的值,您必须通过 ajax 将其存储在会话中。类似于(使用 jQuery):
其中
/storeInSession
映射到 servlet(或操作,取决于所使用的框架),它获取value
请求参数并设置为会话属性。In order to preserve the value of a client-side timer across refreshed you have to store it in the session via ajax. Something like (with jQuery):
where
/storeInSession
is mapped to a servlet (or action, depending on the framework in use) which gets thevalue
request parameter and sets in as session attribute.