gpt4 book ai didi

ajax - 每个ajax请求都会调用preRenderView

转载 作者:行者123 更新时间:2023-12-04 22:12:51 25 4
gpt4 key购买 nike

我在 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.
}

// ...
}

或者在预渲染 View 事件监听器中添加对 FacesContext#isPostback() 的否定检查
public void preRender() {
if (!FacesContext.getCurrentInstance().isPostback()) {
// Do here your thing which should run on initial (GET) request only.
}
}

也可以看看:
  • When to use f:viewAction / preRenderView versus PostConstruct?
  • 关于ajax - 每个ajax请求都会调用preRenderView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19974950/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com