作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 link 之后使用 jquery waypoints 和 jsf 实现无限滚动。
我对其中一个需要无限滚动的 xhtml 进行了预渲染。
现在,由于waypoint 发送ajax 请求,所以为什么每次滚动它都调用prerender,这意味着整个页面都在刷新。
请让我知道如何解决这个问题。
最佳答案
您似乎认为 preRenderView
事件在 View 构建期间只调用一次,而不会在同一 View 的后续请求中调用。这是不真实的。 preRenderView
事件在渲染 View 之前被调用。每个请求 都会在 上呈现 View 。这也包括 ajax 请求(它应该如何为 ajax 请求生成必要的 HTML 输出?)。因此,您所看到的行为完全符合预期。您只是为这项工作使用了错误的工具。
您应该使用 @PostConstruct
bean 的 @ViewScoped
方法,
@ManagedBean
@ViewScoped
public class Bean {
@PostConstruct
public void init() {
// Do here your thing during construction of the view.
}
// ...
}
FacesContext#isPostback()
的否定检查public void preRender() {
if (!FacesContext.getCurrentInstance().isPostback()) {
// Do here your thing which should run on initial (GET) request only.
}
}
关于ajax - 每个ajax请求都会调用preRenderView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19974950/
我是一名优秀的程序员,十分优秀!