5

请帮帮我。我只是想声明一个简单的结果树片段并对其进行迭代。


...

<xsl:variable name="rtf">
  <item-list>
    <item id="1">one</item>
    <item id="2">two</item>
    <item id="3">three</item>
    <item id="4">four</item>
  </item-list>
</xsl:variable>

<xsl:for-each select="msxsl:node-set($rtf)/item-list/item">
  <xsl:value-of select="@id"/>
</xsl:for-each>

...


我完全误解了这是如何工作的吗?


编辑: 我正在使用 .NET XslCompiledTransform 并具有正确的 msxsl 命名空间声明 - xmlns:msxsl="urn:schemas-microsoft-com:xslt"

转换执行良好 - 问题是没有输出

4

3 回答 3

8

我怀疑您在样式表中声明了一个默认命名空间。这将有效地将 <item-list> 和 <item> 元素放入命名空间。要使用 XPath 1.0 选择命名空间限定的元素,您必须始终在表达式中使用前缀。

因此,如果您的样式表顶部有这样的内容:

<xsl:stylesheet xmlns="http://example.com"...>

然后你还需要添加这个:

<xsl:stylesheet xmlns="http://example.com" xmlns:x="http://example.com"...>

然后在 XPath 表达式中使用“x”前缀:

<xsl:for-each select="msxsl:node-set($rtf)/x:item-list/x:item">
  <xsl:value-of select="@id"/>
</xsl:for-each>

让我知道这是否有效。我这里只是推测。

于 2009-12-07T21:07:13.773 回答
4

与 MSXSL 不同,它在 EXSLT 通用命名空间中XslCompiledTransform提供应有的node-set()功能:

<xsl:stylesheet xmlns:exslt="http://exslt.org/common">
  ...
  <xsl:for-each select="exslt:node-set($rtf)/item-list/item">
  ...
</xsl:stylesheet>
于 2009-12-07T21:20:35.127 回答
1

这对我来说看起来不错。

您是否为扩展函数正确声明了 msxsl 命名空间?像这样的东西:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt">

我假设您在这里使用的是 Microsoft XSLT 处理器

于 2009-12-07T13:12:36.390 回答