0

I will get a value from the XML file, e.g.

<WORD>Men</WORD>

Then, I want to create an array in XSLT 1.0, e.g.

<array>
<Item>Men</Item>
<Item>Women</Item>
</array>

If the value from the XML file matches one of the items in the array, it will return true. Can anyone tell me how can I do it?? Thank you!

4

3 回答 3

1
<xsl:stylesheet 
  version="1.0" 
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:exsl="http://exslt.org/common" 
  xmlns:internal="http://tempuri.org/config"
  exclude-result-prefixes="internal"
  extension-element-prefixes="exsl"
>
  <internal:config>
    <array>
      <Item>Men</Item>
      <Item>Women</Item>
    </array>
  </internal:config>

  <xsl:variable name="config" select="document('')/*/internal:config" />

  <xsl:template match="WORD">
    <xsl:if test="$config/array/Item[. = current()]">
      <xsl:value-of select="concat('The current value ', ., ' was found.')" />
    </xsl:if>
  </xsl:template>

</xsl:stylesheet>

笔记:

  • 使用临时名称空间在 XSLT 程序中存储配置。
  • 用于exclude-result-prefixes防止将临时命名空间泄漏到结果文档中
  • 用于document('')从自身内部访问内容样式表。
于 2013-07-02T13:02:45.030 回答
1

看来您正在寻找 exsl:node-set 的扩展功能。看一看:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:exsl="http://exslt.org/common" extension-element-prefixes="exsl">

  <xsl:param name="InputArray">
    <array>
      <Item>Men</Item>
      <Item>Women</Item>
    </array>
  </xsl:param>

  <xsl:param name="InputItem">
    <WORD>Men</WORD>
  </xsl:param>

  <xsl:template match="/">
    <xsl:choose>
      <xsl:when test="exsl:node-set($InputArray)//Item[text()=exsl:node-set($InputItem)//text()]">
        <xsl:text>Yes</xsl:text>
      </xsl:when>
      <xsl:otherwise>
        <xsl:text>No</xsl:text>
      </xsl:otherwise>
    </xsl:choose>
  </xsl:template>

</xsl:stylesheet>
于 2013-07-02T12:45:44.080 回答
0

如果 $doc 和 $table 被适当地绑定,则条件$doc//WORD = $table//item在您希望时为真,在您希望时为假。

于 2013-07-02T15:34:17.133 回答