gpt4 book ai didi

html - 用户如何 only if not null messages?

转载 作者:太空宇宙 更新时间:2023-11-04 15:14:46 26 4
gpt4 key购买 nike

我在想在用<h:messages>以更好的方式,像这样:

<h:panelGroup rendered="#{not empty facesContext.getMessages}">
<hr/>
<h3>Please inform us about:</h3>
<h:messages globalOnly="true" escape="false" />
</h:panelGroup>

这个想法是以一种不同的方式向用户展示消息,具有更多的风格。这可能吗?

最佳答案

它们可通过 FacesContext#getMessageList() 获得在 JSF API 中,因此在 EL 中通过 #{facesContext.messageList}

如果您想检查是否有任何消息:

<h:panelGroup ... rendered="#{not empty facesContext.messageList}">

或者如果您想检查是否有任何全局消息:

<h:panelGroup ... rendered="#{not empty facesContext.getMessageList(null)}">

关于html - 用户如何 <h :messages> only if not null messages?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16540991/

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