樹導航我有這樣的樹結構化的XML(toc.xml文件):使用XML和XSLT
<?xml version="1.0" encoding="utf-8"?>
<toc>
<item name="top" key="4294967296" subkey="1">
<item name="child1" key="4294967611" subkey="">
<item name="child2-1" key="4294961611" subkey="">
<item name="child3-1" key="4294967613" subkey=""/>
<item name="child3-2" key="4294967612" subkey=""/>
</item>
<item name="child2-2" key="4294962611" subkey="">
<item name="d" key="4294974806" subkey=""/>
</item>
<item name="child2-3" key="4294963611" subkey="">
<item name="d" key="4294967661" subkey=""/>
<item name="PI" key="4294967659" subkey=""/>
<item name="q" key="4294967660" subkey=""/>
</item>
<item name="child2-4" key="4294964611" subkey=""/>
<item name="child2-5" key="4294965611" subkey="">
<item name="bb" key="4294967616" subkey=""/>
<item name="bb" key="4294967620" subkey=""/>
<item name="f" key="4294967615" subkey=""/>
</item>
</item>
</item>
</toc>
每個關鍵是在文檔中是唯一的。
我有進口的TOC XML,並試圖輸出導航的XSLT:
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" indent="no" />
<xsl:variable name="id" select="/member/@id" />
<xsl:template match="/member">
<html>
<head>
<title><xsl:value-of select="/member/name"/></title>
</head>
<body>
<div class="navigation">
<xsl:apply-templates select="document('toc.xml')" />
</div>
<div class="content">
<xsl:apply-templates />
</div>
</body>
</html>
</xsl:template>
</xsl>
,想找到HTML文件中的一個節點,並輸出以下HTML:
...html...
<div class="navigation">
<ul>
<li><a href="#">top</a><ul>
<li><a href="#">child1</li><ul>
<li><a href="#">child2</li><ul>
<li><a href="#">child3-1</a></li>
<li><a href="#">child3-2</a></li>
</ul></li>
</ul></li>
</ul></li>
</ul>
</div>
...more html...
基本上我想搜索一個節點:item [@key ='4294967611']並輸出所有父節點和直接子節點。
我覺得這應該很容易,但我很努力地找到有關如何做到這一點的信息。我的XSLT知識不是很好。
在您輸入的child2中會出現多次不同的孩子(例如bb)在你的輸出中。這是一個副本錯誤? child2是否是獨一無二的? – p00ya 2010-08-02 08:07:30
對不起,是的,child2被輸入以指示深度,但名稱是唯一的。我會更新這個問題。 – 2010-08-02 08:13:16
您是否打算將密鑰作爲參數傳遞給xslt? – 2010-08-02 09:57:57