xsl:variable as xpath value for other xsl tag

后端 未结 3 889
广开言路
广开言路 2020-12-09 17:23

I\'m having issues with xsl:variable. I want to create a variable with a value that depends on the value of another XML node attribute. This working good. But w

相关标签:
3条回答
  • 2020-12-09 18:04

    Dynamic evaluation of an XPath expression is generally not supported in XSLT (both 1.0 and 2.0), however:

    We can implement a rather general dynamic XPath evaluator if we only restrict each location path to be an element name:

    <xsl:stylesheet version="1.0"
     xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
     <xsl:output method="text"/>
    
     <xsl:param name="inputId" select="'param/yyy/value'"/>
    
     <xsl:variable name="vXpathExpression"
      select="concat('root/meta/url_params/', $inputId)"/>
    
     <xsl:template match="/">
      <xsl:value-of select="$vXpathExpression"/>: <xsl:text/>
    
      <xsl:call-template name="getNodeValue">
        <xsl:with-param name="pExpression"
             select="$vXpathExpression"/>
      </xsl:call-template>
     </xsl:template>
    
     <xsl:template name="getNodeValue">
       <xsl:param name="pExpression"/>
       <xsl:param name="pCurrentNode" select="."/>
    
       <xsl:choose>
        <xsl:when test="not(contains($pExpression, '/'))">
          <xsl:value-of select="$pCurrentNode/*[name()=$pExpression]"/>
        </xsl:when>
        <xsl:otherwise>
          <xsl:call-template name="getNodeValue">
            <xsl:with-param name="pExpression"
              select="substring-after($pExpression, '/')"/>
            <xsl:with-param name="pCurrentNode" select=
            "$pCurrentNode/*[name()=substring-before($pExpression, '/')]"/>
          </xsl:call-template>
        </xsl:otherwise>
       </xsl:choose>
     </xsl:template>
    </xsl:stylesheet>
    

    when this transformation is applied on this XML document:

    <root>
      <meta>
        <url_params>
          <param>
            <xxx>
              <value>5</value>
            </xxx>
          </param>
          <param>
            <yyy>
              <value>8</value>
            </yyy>
          </param>
        </url_params>
      </meta>
    </root>
    

    the wanted, correct result is produced:

    root/meta/url_params/param/yyy/value: 8
    
    0 讨论(0)
  • 2020-12-09 18:13

    This is not natively possible in XSLT 1.0, but you can use an extension library such as dyn:

    http://www.exslt.org/dyn/functions/evaluate/dyn.evaluate.html

    The dyn:evaluate function evaluates a string as an XPath expression.

    0 讨论(0)
  • 2020-12-09 18:18

    If those path are known in advance like this case, then you can use:

    <xsl:variable name="vCondition" select="node/@attribute = 0"/>
    <xsl:variable name="test" select="actual/path[$vCondition] |
                                      other/actual/path[not($vCondition)]"/>
    
    0 讨论(0)
提交回复
热议问题