0

我正在尝试将变量从以前的模板继承到当前模板。

这是我的xsl,想知道是否有问题:

<xsl:template match="child1">
    <xsl:variable name="props-value">
        <xsl:value-of select="VALUE1"/>
    </xsl:variable>  
    <xsl:apply-templates select="attribute[matches(.,'=@')]">
        <xsl:with-param name="props-value" select="$props-value" /> 
    </xsl:apply-templates>
</xsl:template>  
<xsl:template match="attribute[matches(.,'=@')]">
<xsl:param name="props-value"/>
<xsl:copy>  
<xsl:apply-templates select="@*"/>
    <xsl:if test="$props_value = 'VALUE1'">
        Value is true
    </xsl:if>
</xsl:copy>
</xsl:template>

预期输出:值为真。

4

1 回答 1

0

XSLT 的两个问题:

  1. 在第一个模板的变量中,您选择"VALUE1"了值。这匹配<VALUE1> 元素。我相信您想选择" 'VALUE1' "(值为“VALUE1”的字符串)
  2. 在第二个模板的测试中,您$props_value使用下划线编写,而props-value使用连字符调用参数。

这是您的 XSLT 的更正版本:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="xml" indent="yes" omit-xml-declaration="yes"/>

  <xsl:template match="child1">
    <xsl:variable name="props-value">
      <xsl:value-of select=" 'VALUE1' "/>
    </xsl:variable>
    <xsl:apply-templates select="attribute">
      <xsl:with-param name="props-value" select="$props-value" />
    </xsl:apply-templates>
  </xsl:template>

  <xsl:template match="attribute">
    <xsl:param name="props-value"/>
    <xsl:copy>
      <xsl:apply-templates select="@*"/>
      <xsl:if test="$props-value = 'VALUE1'">
        Value is true
      </xsl:if>
    </xsl:copy>
  </xsl:template>

</xsl:stylesheet>

应用于以下输入 XML 时:

<child1>
  <attribute/>
</child1>

它产生这个输出 XML:

<attribute>
            Value is true
          </attribute>
于 2013-10-01T16:40:05.953 回答