作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的页面上有 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/
我是一名优秀的程序员,十分优秀!