我不明白为什么我没有这个全局变量的范围,有没有替代方案?



我有这个XML:

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="aj.xsl"?>
<Test>
  <Highlight>
    <HighlightName>Name 1</HighlightName>
    <HighlightName>Name 2</HighlightName>
    <HighlightName>Name 3</HighlightName>
    <HighlightName>Name 5</HighlightName>
    <HighlightName>Name 6</HighlightName>
  </Highlight>
  <Date>
    <Name>Name 1</Name>
  </Date>
  <Date>
    <Name>Name 6</Name>
  </Date>
  <Date>
    <Name>Name 2</Name>
  </Date>
  <Date>
    <Name>Name 7</Name>
  </Date>
  <Date>
    <Name>Name 3</Name>
  </Date>
  <Date>
    <Name>Name 8</Name>
  </Date>
  <Date>
    <Name>Name 4</Name>
  </Date>
  <Date>
    <Name>Name 9</Name>
  </Date>
  <Date>
    <Name>Name 5</Name>
  </Date>
</Test>

以及一些测试XSL:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml">
  <xsl:output method="html" indent="yes" version="4.01"
    doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
    doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"/>
  <xsl:template match="/">
    <html xmlns="http://www.w3.org/1999/xhtml">
      <head>
        <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
        <link rel="stylesheet" type="text/css" href="Workbook-S-140-Version2.css"/>
        <title>Test</title>
      </head>
      <body>
        <xsl:for-each select="Test/Highlight/HighlightName">
          <xsl:variable name="strHighlightName" select="."/>
          <p>Start of list for {$strHighlightName}</p>
          <xsl:for-each select="Test/Date">
            <xsl:apply-templates select="Name"/>
          </xsl:for-each>
       </xsl:for-each>
      </body>
    </html>
  </xsl:template>
  <xsl:template match="Name">
    <p>
      <xsl:if test="$strHighlightName=.">
        <xsl:text>**</xsl:text>
      </xsl:if>
      <xsl:value-of select="."/>
    </p>
  </xsl:template>
</xsl:stylesheet>

样品很简短,可以说明问题。在最后一个场景中,我的文件更加详细。

我试图实现的基本概念是循环浏览我想强调的已知名称列表。然后,除其他外,我想指出其他地方的名字是否是突出显示的名字之一。因此,我尝试了上述操作,但遗憾的是,变量strHighlightNameNametemplate不可见。

我意识到我可以使用参数并将值输入到模板中,但在现实世界中,我必须将此参数级联到模板中。can调用Name。

既然我不能使用这种方法,我能用不同的方法吗?例如,我可以这样做吗:

<xsl:template match="Name">
    Does "." match any of the names in the "//Highlight/HighlightName" section?
    If yes
        Text "** "
</xsl:template>

这有道理吗?它将避免需要所需的变量和/或传递参数。

谢谢。

I realise I can use parameters and feed the value in to the template, but in the real world I would have to cascade this param all the way down into the template can calls Name.

在XSLT1.0中,您必须将它级联到所有中间模板中

在XSLT2.0中,您可以使用隧道参数,这些参数从第一个模板隧道传输到第二个模板,而无需在所有中间模板中明确提及。

因此,看看您的应用程序环境中是否有XSLT2.0处理器。

相关内容

  • 没有找到相关文章

最新更新