表A:
1-0-1,this is a test
3-1-1,this is a test
4-3-1,this is a test
5-3-1,this is a test
2-0-2,this is a test
上面是BBS主题列表的一个例子。一般来说,假如不是使用Oracle(Oracle 有一条查询语句可以自动生成家族树,请查阅Select ... start with ... connect by ...语句),那么如何实现上例的列表是一件费事的工作(相信许多程序员都写过)。
如果我们改用XML来实现,那么结果会怎么样呢?
现在我们使用"Select * from bbs"从数据库中查询贴子,并以XML格式返回(如果你是用ADO,那么可以用其RecordSet.Save ... adPersistXML直接生成,当然如果你不喜欢ADO生成的格式,可用程序生成,如本例):
表B:
?xml version="1.0"?
?xml-stylesheet type="text/xsl" href="b.xsl"?
bbs
post sid="4" pid="3" aid="1"
title4-3-1,this is a test/title
contentslddfjslajfsdljf/content
/post
post sid="5" pid="3" aid="1"
title5-3-1,this is a test/title
contentslddfjslajfsdljf/content
/post
post sid="3" pid="1" aid="1"
title3-1-1,this is a test/title
contentslddfjslajfsdljf/content
/post
post sid="1" pid="0" aid="1"
title1-0-1,this is a test/title
contentslddfjslajfsdljf/content
/post
post sid="2" pid="0" aid="2"
title2-0-2,this is a test/title
contentslddfjslajfsdljf/content
/post
/bbs
说明:这里sid是贴子的id号,pid是贴子的父id号。title是标题,content是贴子的内容。
上表中第二行是指定使用b.XSL来转换XML内容。这是提供给IE5的信息。假如你使用XMLDOM,那么可以不要这条信息。
我们再来看看将上表的XML内容显示成表A形式的XSL文件是怎么实现的:
表C: b.XSL
?xml version='1.0'?
xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl"
xsl:template match="/"
html
body
xsl:apply-templates select="*"/
/body
/html
/xsl:template
xsl:template match="post"
li
div
xsl:attribute name="title"xsl:value-of select="content"//xsl:attribute
xsl:value-of select="title"/
xsl:if test="/bbs/post[@pid=context()/@sid]"
xsl:element name="ul"
xsl:apply-templates select="/bbs/post[@pid=context()/@sid]"/
/xsl:element
/xsl:if
/div
/li
/xsl:template
xsl:template match="bbs"
ul
xsl:apply-templates select="post[@pid=0]"/
/ul
/xsl: