gpt4 book ai didi

java - 如何在 xHtml 的 IF-Else 语句中插入 HTML 代码?

转载 作者:行者123 更新时间:2023-11-29 03:20:22 32 4
gpt4 key购买 nike

我的页面上有 primefaces 数据表。

我在列中显示了两个数字。

我喜欢这样:

 #{pushNotification.status==1? 'FINISHED' : 'STOP'}
*// If the data == 1 show 'FINISHED' else show 'STOP'*

但我想在 if 语句中运行 HTML 代码,而不仅仅是文本。

我试过这样;

 #{pushNotification.status==1? '<a>FINISHED</a>' : 'STOP'}

给我“EL 表达式”错误;

javax.el.ELException: EL Expression Unbalanced: ... #{pushNotification.status==1? '' : 'STOP' '
at com.sun.faces.facelets.el.ELText.findVarLength(ELText.java:428)
at com.sun.faces.facelets.el.ELText.parse(ELText.java:373)
at com.sun.faces.facelets.el.ELText.parse(ELText.java:325)
at com.sun.faces.facelets.compiler.TextUnit.flushTextBuffer(TextUnit.java:139)
at com.sun.faces.facelets.compiler.TextUnit.addInstruction(TextUnit.java:127)
at com.sun.faces.facelets.compiler.TextUnit.startTag(TextUnit.java:197)
at com.sun.faces.facelets.compiler.CompilationManager.pushTag(CompilationManager.java:313)
at com.sun.faces.facelets.compiler.SAXCompiler$CompilationHandler.startElement(SAXCompiler.java:247)
at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.startElement(AbstractSAXParser.java:509)

最佳答案

<ui:fragment rendered="#{pushNotification.status == 1}">FINISHED</ui:fragment>
<ui:fragment rendered="#{pushNotification.status != 1}">STOP</ui:fragment>

同时在html标签中加入xmlns:ui="http://java.sun.com/jsf/facelets"

关于java - 如何在 xHtml 的 IF-Else 语句中插入 HTML 代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24037225/

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