jsf – Ajax update/render在已渲染属性的组件上不起作用

前端之家收集整理的这篇文章主要介绍了jsf – Ajax update/render在已渲染属性的组件上不起作用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图ajax更新一个有条件渲染的组件。
<h:form>
    ...
    <h:commandButton value="Login" action="#{login.submit}">
        <f:ajax execute="@form" render=":text" />
    </h:commandButton>
</h:form>
<h:outputText id="text" value="You're logged in!" rendered="#{not empty user}" />

但是,这不行。我可以确保#{user}实际上是可用的。这是怎么引起的,我该如何解决呢?

如果组件本身没有呈现在第一位,则不可能通过ajax重新渲染(更新)组件。必须始终在ajax可以重新呈现之前呈现组件。 Ajax正在使用JavaScript document.getElementById()来查找需要更新的组件。但是如果JSF没有将组件放在第一位,那么JavaScript找不到要更新的内容

解决方案是简单地引用总是渲染的父组件。

<h:form>
    ...
    <h:commandButton ...>
        <f:ajax ... render=":text" />
    </h:commandButton>
</h:form>
<h:panelGroup id="text">
    <h:outputText ... rendered="#{not empty user}" />
</h:panelGroup>

也可以看看:

> Why do I need to nest a component with rendered=”#{some}” in another component when I want to ajax-update it?
> How to find out client ID of component for ajax update/render? Cannot find component with expression “foo” referenced from “bar”

原文链接:https://www.f2er.com/ajax/160379.html

猜你在找的Ajax相关文章