1

我有一个项目列表,对于每个项目,我都想将其设为 url。

列表:

 <root>
   <tags>
     <tag>open source</tag>
     <tag>open</tag>
     <tag>advertisement</tag>
     <tag>ad</tag>
   </tags>
 </root>

XSLT:

<xsl:template match="*">
    <div class="tags">
      <xsl:for-each select="/post/tags/tag">
          <a href="#">
            <xsl:value-of select="//tag"/>
          </a>
      </xsl:for-each>
    </div>
</xsl:template>

输出:

  <div class="tags"> 
    <a href="#">open source</a> 
    <a href="#">open source</a> 
    <a href="#">open source</a> 
    <a href="#">open source</a> 
  </div> 

我究竟做错了什么?

4

2 回答 2

5

一种更正确的 XSLT 方法是添加一个“标记”模板并修改您的原始模板:

<xsl:template match="*">
    <div class="tags">
        <xsl:apply-templates select="tag" />
    </div>
</xsl:template>

<xsl:template match="tag">
      <a href="#">
        <xsl:value-of select="."/>
      </a>
</xsl:template>
于 2009-05-09T21:51:50.990 回答
4

您对 value-of 表达式所做的是选择 xml 文档中的所有标记节点:

<xsl:value-of select="//tag"/>

这样做的效果是只有第一个选定的节点将用于该值。

您可以改用以下内容:

<xsl:value-of select="."/>

在哪里选择 =“。” 将从 for-each 中选择当前节点。

于 2009-05-09T21:26:30.520 回答