我是XSLT的新手,在格式化具有递归节点的XML文档时遇到了一些问题。
我的XML代码:
希望我的XML显示:
<item>都嵌套在<items>中。<item>节点的级别可以无限深。<?xml version="1.0" encoding="utf-8" ?>
- <items>
<item groupID="1" name="Home" url="//" />
- <item groupID="2" name="Guides" url="/Guides/">
- <items>
- <item groupID="26" name="Online-Poker-Guide" url="/Guides/Online-Poker-Guide/">
- <items>
- <item>
<id>107</id>
- <title>
- <![CDATA[ Poker Betting - Online Poker Betting Structures
]]>
</title>
- <url>
- <![CDATA[ /Guides/Online-Poker-Guide/online-poker-betting-structures
]]>
</url>
</item>
- <item>
<id>114</id>
- <title>
- <![CDATA[ Beginners' Poker - Poker Hand Ranking
]]>
</title>
- <url>
- <![CDATA[ /Guides/Online-Poker-Guide/online-poker-hand-ranking
]]>
</url>
</item>
- <item>
<id>115</id>
- <title>
- <![CDATA[ Poker Terms - 4th Street and 5th Street
]]>
</title>
- <url>
- <![CDATA[ /Guides/Online-Poker-Guide/online-poker-poker-terms
]]>
</url>
</item>
- <item>
<id>116</id>
- <title>
- <![CDATA[ Popular Poker - The Popularity of Texas Hold'em
]]>
</title>
- <url>
- <![CDATA[ /Guides/Online-Poker-Guide/online-poker-popularity-texas-holdem
]]>
</url>
</item>
- <item>
<id>364</id>
- <title>
- <![CDATA[ The Impact of Traditional Poker on Online Poker (and vice versa)
]]>
</title>
- <url>
- <![CDATA[ /Guides/Online-Poker-Guide/online-poker-tradional-vs-online
]]>
</url>
</item>
- <item>
<id>365</id>
- <title>
- <![CDATA[ The Ultimate, Absolute Online Poker Scandal
]]>
</title>
- <url>
- <![CDATA[ /Guides/Online-Poker-Guide/online-poker-scandal
]]>
</url>
</item>
</items>
- <items>
- <item groupID="27" name="Beginners-Poker" url="/Guides/Online-Poker-Guide/Beginners-Poker/">
- <items>
+ <item>
<id>101</id>
- <title>
- <![CDATA[ Poker Betting - All-in On the Flop
]]>
</title>
- <url>
- <![CDATA[ /Guides/Online-Poker-Guide/Beginners-Poker/poker-betting-all-in-on-the-flop
]]>
</url>
</item>
+ <item>
<id>102</id>
- <title>
- <![CDATA[ Beginners' Poker - Choosing an Online Poker Room
]]>
</title>
- <url>
- <![CDATA[ /Guides/Online-Poker-Guide/Beginners-Poker/beginners-poker-choosing-a-room
]]>
</url>
</item>
+ <item>
<id>105</id>
- <title>
- <![CDATA[ Beginners' Poker - Choosing What Type of Poker to Play
]]>
</title>
- <url>
- <![CDATA[ /Guides/Online-Poker-Guide/Beginners-Poker/beginners-poker-choosing-type-to-play
]]>
</url>
</item>
+ <item>
<id>106</id>
- <title>
- <![CDATA[ Online Poker - Different Types of Online Poker
]]>
</title>
- <url>
- <![CDATA[ /Guides/Online-Poker-Guide/Beginners-Poker/online-poker
]]>
</url>
</item>
+ <item>
<id>109</id>
- <title>
- <![CDATA[ Online Poker - Opening an Account at an Online Poker Site
]]>
</title>
- <url>
- <![CDATA[ /Guides/Online-Poker-Guide/Beginners-Poker/online-poker-opening-an-account
]]>
</url>
</item>
+ <item>
<id>111</id>
- <title>
- <![CDATA[ Beginners' Poker - Poker Glossary
]]>
</title>
- <url>
- <![CDATA[ /Guides/Online-Poker-Guide/Beginners-Poker/beginners-poker-glossary
]]>
</url>
</item>
+ <item>
<id>117</id>
- <title>
- <![CDATA[ Poker Betting - What is a Blind?
]]>
</title>
- <url>
- <![CDATA[ /Guides/Online-Poker-Guide/Beginners-Poker/poker-betting-what-is-a-blind
]]>
</url>
</item>
- <item>
<id>118</id>
- <title>
- <![CDATA[ Poker Betting - What is an Ante?
]]>
</title>
- <url>
- <![CDATA[ /Guides/Online-Poker-Guide/Beginners-Poker/poker-betting-what-is-an-ante
]]>
</url>
</item>
+ <item>
<id>119</id>
- <title>
- <![CDATA[ Beginners Poker - What is Bluffing?
]]>
</title>
- <url>
- <![CDATA[ /Guides/Online-Poker-Guide/Beginners-Poker/online-poker-what-is-bluffing
]]>
</url>
</item>
- <item>
<id>120</id>
- <title>
- <![CDATA[ Poker Games - What is Community Card Poker?
]]>
</title>
- <url>
- <![CDATA[ /Guides/Online-Poker-Guide/Beginners-Poker/online-poker-what-is-community-card-poker
]]>
</url>
</item>
- <item>
<id>121</id>
- <title>
- <![CDATA[ Online Poker - What is Online Poker?
]]>
</title>
- <url>
- <![CDATA[ /Guides/Online-Poker-Guide/Beginners-Poker/online-poker-what-is-online-poker
]]>
</url>
</item>
</items>
</item>
</items>
</item>
</items>
</item>
</items>XSL代码:
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" indent="yes"/>
<xsl:template name="loop">
<xsl:for-each select="items/item">
<ul>
<li><xsl:value-of select="@name" /></li>
<xsl:if test="@name and child::node()">
<ul>
<xsl:for-each select="items/item">
<li><xsl:value-of select="@name" />test</li>
</xsl:for-each>
</ul>
<xsl:call-template name="loop" />
</xsl:if>
<xsl:if test="child::node() and not(@name)">
<xsl:for-each select="/items">
<li><xsl:value-of select="id" /></li>
</xsl:for-each>
</xsl:if>
</ul>
</xsl:for-each>
<xsl:for-each select="item/items/item">
<li>hi</li>
</xsl:for-each>
</xsl:template>
<xsl:template match="/" name="test">
<xsl:call-template name="loop" />
</xsl:template>
</xsl:stylesheet>我试图编写XSL,以便每个<items>节点呈现一个<ul>,每个<items>节点呈现一个<li>。
XSL需要是递归的,因为我无法判断嵌套节点的深度。
有人能帮忙吗?
你好,艾尔
发布于 2010-05-14 18:55:23
这很简单。XSLT处理器为您执行所有递归和循环操作,只需为要处理的节点指定模板即可。
<xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
>
<!-- <items> with <item> children becomes <ul> -->
<xsl:template match="items[item]">
<ul>
<xsl:apply-templates select="item" />
</ul>
</xsl:template>
<!-- <items> without <item> children is not handled -->
<xsl:template match="items[not(item)]" />
<!-- <item> with @name becomes <li> -->
<xsl:template match="item[@name]">
<li>
<xsl:value-of select ="@name" />
<xsl:apply-templates select="items" />
</li>
</xsl:template>
<!-- <item> without @name becomes <li>, too -->
<xsl:template match="item[not(@name)]">
<li>
<xsl:value-of select ="id" />
<xsl:apply-templates select="items" />
</li>
</xsl:template>
</xsl:stylesheet><xsl:apply-templates>始终是XSLT中的递归/迭代步骤。它接受任何适合其select表达式的节点,并为它们找到模板。
您的工作是创建一个适当的select表达式,为您想要处理的每个节点提供一个模板,否则就会闪开。)抵制将所有东西塞进一个大模板中的冲动,或者仅仅因为感觉方便就使用<xsl:for-each> --事实并非如此。单独的模板创建了更可重用和更易于维护的代码,嵌套程度更低,XSLT处理器也为模板处理进行了优化,因此这甚至可能是更有效的方法。
发布于 2010-05-14 16:57:19
如果我正确理解了您的需求,您应该可以在不编写循环的情况下做到这一点。
通常更好的做法是使用更具声明性的样式,在本例中编写一个模板,匹配<items>标记并将其转换为<ul>,而另一个匹配的<item>则将其转换为<li>。两个模板中的<xsl:apply-templates/>调用将提供递归。
发布于 2010-05-15 06:20:52
下面的样式表执行指定的格式设置。注意使用xsl:apply-templates对XML树进行递归处理。有关详细信息,请参阅5.4应用模板规则。
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="/">
<xsl:apply-templates select="items"/>
</xsl:template>
<xsl:template match="items">
<ul>
<xsl:apply-templates select="item" />
</ul>
</xsl:template>
<xsl:template match="item">
<li>
<xsl:choose>
<xsl:when test="@name">
<xsl:value-of select="@name"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="id"/>
</xsl:otherwise>
</xsl:choose>
<xsl:apply-templates select="items" />
</li>
</xsl:template>
</xsl:stylesheet>https://stackoverflow.com/questions/2835567
复制相似问题