为什么XSL:VARIABLE节点没有出现在我的XML文件中?

时间:2013-11-11 21:33:53

标签: xml xslt xpath xslt-1.0

我有下一个代码:

<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:cfd="http://www.sat.gob.mx/cfd/2" xmlns:ecc="http://www.sat.gob.mx/cfd/2" xmlns:fo="http://www.w3.org/1999/XSL/Format">
  <xsl:output method="xml" version="1.0"  indent="yes" encoding="UTF-8"/>
  <xsl:template match="/">
    <xsl:element name="Addenda">
      <xsl:element name="requestForPayment">
        <xsl:attribute name="type">SimpleInvoiceType</xsl:attribute>
        <xsl:attribute name="contentVersion">1.3.1</xsl:attribute>
        <xsl:attribute name="documentStructureVersion">AMC7.1</xsl:attribute>
        <xsl:attribute name="documentStatus">ORIGINAL</xsl:attribute>
        <xsl:attribute name="DeliveryDate">
          <xsl:value-of select="substring(translate(//DocDate, ' ', ''),1,10)"/>
        </xsl:attribute>
        <xsl:element name="requestForPaymentIdentification">
          <xsl:element name="entityType">
            <xsl:call-template name="Tpos_Documento"/>
          </xsl:element>
          <xsl:element name="uniqueCreatorIdentification">
            <xsl:value-of select="concat(//Serial/Name,//Serial/Folio)"/>
          </xsl:element>
        </xsl:element>
        <xsl:variable name="zzz_specialInstruction" select="count(//CustomField[@name = 'Text3']/StringValue)"/>
        <xsl:if test="$zzz_specialInstruction &gt; 0">
          <xsl:element name="specialInstruction">
            <xsl:attribute name="code">ZZZ</xsl:attribute>
            <xsl:element name="text">
              <xsl:value-of select="//CustomField[@name = 'Text3']/StringValue"/>
            </xsl:element>
          </xsl:element>
        </xsl:if>
  </xsl:template>
</xsl:stylesheet>

但是下一个节点没有出现在我的XML生成中:

<xsl:variable name="zzz_specialInstruction" select="count(//CustomField[@name = 'Text3']/StringValue)"/>
    <xsl:if test="$zzz_specialInstruction &gt; 0">
      <xsl:element name="specialInstruction">
        <xsl:attribute name="code">ZZZ</xsl:attribute>
        <xsl:element name="text">
          <xsl:value-of select="//CustomField[@name = 'Text3']/StringValue"/>
        </xsl:element>
      </xsl:element>
    </xsl:if>

我的问题是,当我编译我的XSLT的代码时,它的节点不会出现。我的家伙是为什么不在我的XML文件中出现这个节点。???

2 个答案:

答案 0 :(得分:1)

xsl:variable元素为创建的变量的给定名称赋值。就像在下面的python代码x = 3*3中一样,没有像这样的print语句就不能打印数字:

x = 3*3
print x
# Displays 9 on the screen.

同样,在XSLT中,这个:

<xsl:variable name="x" select="3*3" />

什么都不做。在输出XML文件中生成它的唯一方法是执行一个命令,该命令将在输出中呈现它,如下所示:

<xsl:variable name="x" select="3*3" />
<xsl:element name="x">
    <xsl:value select="$x"/>
</xsl:element>

将产生:

<x>9</x>

答案 1 :(得分:1)

你是否意识到你可以更容易地写出:

<xsl:template match="/">
    <Addenda>
      <requestForPayment
           type="SimpleInvoiceType"
           contentVersion="1.3.1"
           documentStructureVersion="AMC7.1"
           documentStatus="ORIGINAL"
           DeliveryDate="{substring(translate(//DocDate, ' ', ''),1,10)}">
        <requestForPaymentIdentification>
          <entityType>
            <xsl:call-template name="Tpos_Documento"/>
          </entityType>
          <uniqueCreatorIdentification>
            <xsl:value-of select="concat(//Serial/Name,//Serial/Folio)"/>
          </uniqueCreatorIdentification>
        </requestForPaymentIdentification >
        <xsl:variable name="zzz_specialInstruction" 
                      select="count(//CustomField[@name = 'Text3']/StringValue)"/>
        <xsl:if test="$zzz_specialInstruction &gt; 0">
          <specialInstruction code="ZZZ">
            <text>
              <xsl:value-of select="//CustomField[@name = 'Text3']/StringValue"/>
            </text>
          </specialInstruction >
        </xsl:if>
   ...
  </xsl:template>