页面加载时调用的 Tapestry4 方法
每次刷新页面并且我在页面上执行了一些操作时都会调用 pagevalidate() 方法。我正在寻找一种仅在第一次加载页面时调用的方法,并且在随后刷新页面/执行某些操作时,将不会调用该方法。 Tapestry 4中有这样的方法吗?
pagevalidate() method will be called each time the page is refresh and i did some action on the page. I looking for a method that will only be call first time the page is loaded and for subsequent time the page is refresh/do some actions, the method will not be called. any such method in tapestry 4?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试在会话对象中设置一个标志,并将您只想第一次调用的代码包装在通过检查该标志输入的 if 块中。
You could try setting a flag in the session object and wrap the code that you only want called the first time in an if-block that is entered by checking that flag.