大家下午好! 我在测试条形码的值时遇到问题。 首先,我将向您展示xsl和xml代码,然后我将解释问题。 Xsl代码:
<fo:table-cell font-size="7" padding="0.5mm" border-width="0.2mm" border-style="transparent">
<fo:block>
<xsl:if test="gsmsg/barcode">
<fo:block>
<fo:instream-foreign-object>
<xsl:variable name="Barcod">
<xsl:value-of select="gsmsg/barcode"/>
</xsl:variable>
<barcode:barcode xmlns:barcode="http://barcode4j.krysalis.org/ns"
message="{$Barcod}" orientation="0">
<barcode:code128>
<barcode:height>8mm</barcode:height>
</barcode:code128>
</barcode:barcode>
</fo:instream-foreign-object>
</fo:block>
</xsl:if>
</fo:block>
</fo:table-cell>
Xml源代码:
<gsmsg xmlns="">
<IdentificativoSdI>169077607</IdentificativoSdI>
<NomeFile>IT01942890995.xml</NomeFile>
<Formato>FPR12</Formato>
<MessageId>1185389295</MessageId>
<TentativiInvio>1</TentativiInvio>
<Lotto>405</Lotto>
<attpass>P</attpass>
<Versione>0.7</Versione>
<TipoMsg>DO</TipoMsg>
<barcode/>
<note/>
</gsmsg>
条形码的值为空。在测试方面,<xsl:if test="gsmsg/barcode">
必须验证是否有值,否则,fop不要读取Barcode4j插件。
在我的情况下,<xsl:if test="gsmsg/barcode">
不起作用,因为继续读取Barcode4j插件,并且由于条形码的“ message”参数而导致的打印崩溃不能为空。
为什么xsl:if在我的电脑上不起作用
案件?
请帮助我,
最好的问候, 马可
答案 0 :(得分:2)
从理论上讲,
<xsl:if test="gsmsg/barcode">
测试barcode
元素是否存在。
如果要测试是否存在文本值,请执行以下操作:
<xsl:if test="string(gsmsg/barcode)">
或:
<xsl:if test="gsmsg/barcode/text()">