1

我有下一个代码:

<?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 文件中没有出现这个节点。???

4

2 回答 2

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>
于 2013-11-12T00:00:19.847 回答
1

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

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>
于 2013-11-11T21:49:13.357 回答