0

对不起我的英语不好。

XSL 1.0。如何从元素或属性值计算表达式?

例如 XML:

<position>
  <localizedName>ref-help</localizedName>
  <reference>concat('../help/', $lang, '/index.html')</reference>
</position>

我尝试使用“参考”属性中的表达式:

<xsl:for-each select="/content/positions/position">
        <li>
          <!--Save expression to variable...-->
          <xsl:variable name="path" select="reference"/>
          <!--Evaluate variable and set it value to 'href'-->
          <a target="frDocument" href="{$path}">
            <xsl:variable name="x" select="localizedName"/>
            <xsl:value-of select="$resources/lang:resources/lang:record[@id=$x]"/>
          </a>
        </li>
      </xsl:for-each>

但我得到字符串:

file:///C:/sendbox/author/application/support/concat('../help/',%20%24lang,%20'/index.html')

我该如何评价它?

问候

4

1 回答 1

1

如果您的 XSLT 处理器实现了EXSLT扩展,您可以引用一个将字符串动态评估为 XPath 表达式的函数

<xsl:stylesheet 
  version="1.0"
  xmlns="http://www.w3.org/1999/XSL/Transform"
  xmlns:dyn="http://exslt.org/dynamic"
  extension-element-prefixes="dyn"
>
  <xsl:template match="content">
    <xsl:apply-templates select="positions/position" />
  </xsl:template>

  <xsl:template match="position">
    <li>
      <a target="frDocument" href="{dyn:evaluate(reference)}">
        <xsl:value-of select="
          $resources/lang:resources/lang:record[@id=current()/localizedName]
        "/>
      </a>
    </li>
  </xsl:template>
</xsl:stylesheet>

笔记:

  • 在使用它们之前无需将它们保存在变量中
  • 有一个current()你可能错过的功能
  • 使用<xsl:apply-templates><xsl:template>赞成<xsl:for-each>
于 2012-04-06T16:22:40.510 回答