3

我正在尝试使用属性 autoUpdate 测试 p:growl 和 p:messages,但它不起作用,虽然它是一个非常简单的代码。

我的页面(primes.xhtml):

<h:head/>
<h:body>
    <h:form>
        <p:messages autoUpdate="true"/>
        <p:commandButton action="#{dateBean.testErr}"/>
    </h:form>
</h:body>

DateBean 类:

@ManagedBean
public class DateBean {

    public String testErr(){

        FacesContext context = FacesContext.getCurrentInstance();
        context.addMessage(null, new FacesMessage("test error"));
        return null;
    }
}

每当我点击命令按钮时,服务器都会给我以下警告:

“警告:有一些未处理的 FacesMessage,这意味着并非每个 FacesMessage 都有机会呈现。这些未处理的 FacesMessage 是:- 测试错误”

但是页面中没有显示消息,咆哮也没有。

4

1 回答 1

7

最新: Primefaces 7 不支持此 p:growl 和 p:messages autoUpdate="true"属性。只是它不起作用,您会收到上面的服务器警告:“警告:有一些未处理的 FacesMessages,...”

使用这个而不是 autoUpdate="true" 属性:

<p:messages>
    <p:autoUpdate />
</p:messages>

和这个

<p:growl id="growl" showDetail="true" sticky="true">
    <p:autoUpdate />
</p:growl>

也可以看看:

于 2019-05-15T10:57:31.677 回答