这是我正在使用的原始XML的示例:
<dsQueryResponse>
<Rows>
<Row Title="Animal" Parent="" />
<Row Title="Mammal" Parent="Animal" />
<Row Title="Lion" Parent="Mammal" />
<Row Title="Plant" Parent="" />
<Row Title="Elephant" Parent="Mammal" />
</Rows>
</dsQueryResponse>
使用 XSLT,如何使输出成为嵌套的 UL,如下所示:
<ul>
<li>
Animal
<ul>
<li>
Mammal
<ul>
<li>Elephant</li>
<li>Lion</li>
</ul>
</li>
</ul>
</li>
<li>Plant</li>
</ul>
我只能对XSLT"满意",只能进行简单的排序,我知道我可以通过JavaScript/jQuery轻松做到这一点,但我宁愿使用XSLT。
试试这个 XSLT:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="/">
<ul>
<xsl:apply-templates select="//Row[@Parent = '']"/>
</ul>
</xsl:template>
<xsl:template match="Row">
<li>
<xsl:value-of select="@Title"/>
<xsl:if test="../Row[@Parent = current()/@Title]">
<ul>
<xsl:apply-templates select="../Row[@Parent = current()/@Title]"/>
</ul>
</xsl:if>
</li>
</xsl:template>
</xsl:stylesheet>
输出:
<ul>
<li>
Animal<ul>
<li>
Mammal<ul>
<li>Lion</li>
<li>Elephant</li>
</ul>
</li>
</ul>
</li>
<li>Plant</li>
</ul>
这里的
"优雅"(和高效!(解决方案是使用键来检索"相关"记录:
XSLT 1.0
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:key name="row-by-parent" match="Row" use="@Parent" />
<xsl:template match="/">
<ul>
<xsl:apply-templates select="dsQueryResponse/Rows/Row[not(string(@Parent))]"/>
</ul>
</xsl:template>
<xsl:template match="Row">
<li>
<xsl:value-of select="@Title"/>
<xsl:variable name="child-rows" select="key('row-by-parent', @Title)" />
<xsl:if test="$child-rows">
<ul>
<xsl:apply-templates select="$child-rows"/>
</ul>
</xsl:if>
</li>
</xsl:template>
</xsl:stylesheet>
有趣的挑战。
这个xsl得到一个html文档,这是我认为你想要的。不过它的格式并不漂亮。匹配的模板将启动搜索没有父级节点的过程。然后,它调用该类型的模板。该模板以递归方式调用自身以迭代子类型。
我使用命令行应用程序msxsl对其进行了测试。扬子晚报
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt"
exclude-result-prefixes="msxsl" version="1.0"
>
<xsl:output omit-xml-declaration="yes" method="xml" indent="yes"/>
<xsl:template name="CategoryTemplate">
<xsl:param name="CategoryName"/>
<ul>
<xsl:for-each select="/*[local-name()='dsQueryResponse']/*[local-name()='Rows']/*[local-name()='Row' and @Parent=$CategoryName]">
<li>
<xsl:value-of select="@Title"/>
<!--recursively call template with category-->
<xsl:call-template name="CategoryTemplate">
<xsl:with-param name="CategoryName" select="@Title"/>
</xsl:call-template>
</li>
</xsl:for-each>
</ul>
</xsl:template>
<xsl:template match="/*[local-name()='dsQueryResponse']/*[local-name()='Rows']">
<xsl:variable name="CategoryName">
<xsl:text></xsl:text>
</xsl:variable>
<html>
<body>
<xsl:call-template name="CategoryTemplate">
<xsl:with-param name="CategoryName" select="$CategoryName"/>
</xsl:call-template>
</body>
</html>
</xsl:template>
</xsl:stylesheet>