各位会员下午好!我在测试条形码的值时遇到问题。首先,我将向您展示 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 插件并且由于条形码的“消息”参数不能为空而导致打印崩溃。为什么 xsl:if 在我的情况下不起作用?请帮我,
最好的问候, 马可