XSL msxsl:节点集问题

时间:2009-12-07 13:03:39

标签: xslt node-set

请帮帮我们。我只是想声明一个简单的结果树片段并迭代它。


...

<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”

转换执行得很好 - 问题在于没有输出

3 个答案:

答案 0 :(得分:8)

我怀疑你在样式表中声明了一个默认的命名空间。这将有效地放置&lt; item-list&gt;和&lt; item&gt;元素到命名空间。要使用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>

如果这样做,请告诉我。我只是在这里推测。

答案 1 :(得分:4)

与MSXSL不同,XslCompiledTransform提供node-set()函数,它位于supposed to be - 在EXSLT Common命名空间中:

<xsl:stylesheet xmlns:exslt="http://exslt.org/common">
  ...
  <xsl:for-each select="exslt:node-set($rtf)/item-list/item">
  ...
</xsl:stylesheet>

答案 2 :(得分: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处理器