从动态变量填充节点

时间:2012-02-06 04:17:49

标签: xml xslt

我想在输出文档中的Root标记下的节点a中获取值“a”(输入可以是任何内容)。我知道如果我做的话

<xsl:value-of select="$item1"/>

我会得到所需的价值。但是我想使用像

这样的东西
<xsl:value-of select="concat('$item','1')"/>

原因是因为我可以动态创建许多变量,并且变量末尾的数字会增加。所以我可以有item1,item2,item3等。我在这里展示了一个示例,这就是我在select值中使用硬编码值'1'的原因。这可能在xslt1.0中吗?

这是我的xslt,可以使用任何输入xml

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl"
>
    <xsl:output method="xml" indent="yes"/>

    <xsl:template match="/">
      <xsl:variable name="item1" select="'a'" />
      <Root>
        <a>
          <xsl:value-of select="concat('$item','1')"/>
        </a>
      </Root>
    </xsl:template>
</xsl:stylesheet>

1 个答案:

答案 0 :(得分:1)

在XSLT 1.0 / XPath 1.0中无法使用PHP作为变量变量。

使用node-set()扩展名的exslt函数,您可以构建一个像数组一样工作的节点集。

<?xml version='1.0' encoding='UTF-8'?>
<xsl:stylesheet version='1.0'
                xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
                xmlns:exsl='http://exslt.org/common'
                xmlns:msxsl='urn:schemas-microsoft-com:xslt'
                exclude-result-prefixes='msxsl exsl'>

<xsl:template match='/'>
    <!-- result tree fragment -->
    <xsl:variable name='_it'>
        <em>a</em>
        <em>b</em>
        <em>c</em>
        <em>d</em>
    </xsl:variable>
    <!-- create a node-set from the result tree fragment -->
    <xsl:variable name='it' select='exsl:node-set($_it)'/>
    <Root>
        <a>
            <!--
                this is a normal xpath with the variable '$it' and a node 'em'
                the number in brackets is the index starting with 1
            -->
            <xsl:value-of select='$it/em[1]'/> <!-- a -->
            <xsl:value-of select='$it/em[2]'/> <!-- b -->
        </a>
    </Root>
</xsl:template>

<!-- MS doesn't provide exslt -->
<msxsl:script language='JScript' implements-prefix='exsl'>
    this['node-set'] = function (x) {
        return x;
    }
</msxsl:script>

</xsl:stylesheet>