0

私の英語でごめんなさい。

XSL1.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 に答える