DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> XML學習教程 >> XML詳解 >> 在XSLT中實現按日期排序
在XSLT中實現按日期排序
編輯:XML詳解     

我們在使用XSLT進行XML轉換的時候,經常遇到按XML日期類型的數據進行排序的情況,按照默認的排序規則,很難實現正確的排序效果。雖然最新的MsXML3 SP4提供了3種數據類型的排序方式:

<xsl:sort select = string-expression data-type = { "text" | "number" | Qname } order = { "ascending" | "descending" } /> 但好像仍不能滿足我們的需要,下面我們就介紹日期類型數據的排序方法。 我們的排序方法是基於下面語句的返回值為true的理論的: 好了,下面就是我們的xsl文件:

SortXML.xsl

<?xml version="1.0" encoding="gb2312"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:user="http://dotnet.aspx.cc/" exclude-result-prefixes="msxsl user"> <msxsl:script language="JavaScript" implements-prefix="user"> function XMLDateTime(nodelist) { return Date.parse(nodelist.replace(/-/g,"/")); } </msxsl:script> <xsl:output omit-xml-declaration="yes"/> <xsl:template match="/"> <xsl:call-template name="ItemList"/> </xsl:template> <xsl:template name="ItemList"> 標題 修改時間 <xsl:for-each select="/multistatus/response"> <xsl:sort order="descending" select="user:xmlDateTime(string(getlastmodified))" data-type="number"/> <xsl:value-of select="Title"/> <xsl:value-of select="getlastmodified"/> </xsl:for-each> </xsl:template> </xsl:stylesheet>

SortXML.XML

<?xml version="1.0" encoding="GB2312"?> <?xml-stylesheet type="text/xsl" href="SortXML.xsl"?> <multistatus> <response> <href>http://sz.luohuedu.Net/XML/</href> <getlastmodified>2004-8-14 10:51:44</getlastmodified> <Title>【孟憲會之精彩世界】</Title> </response> <response> <href>http://dotnet.aspx.cc/Play.ASPx</href> <getlastmodified>2004-10-23 11:11:10</getlastmodified> <Title>【孟憲會之精彩世界】音樂頻道</Title> </response> <response> <href>http://dotnet.ASPx.cc/</href> <getlastmodified>2004-02-10 18:36:19</getlastmodified> <Title>【孟憲會之精彩世界】</Title> </response> <response> <href>http://lucky.myrice.com/</href> <getlastmodified>2004-01-14 10:51:21</getlastmodified> <Title>【孟憲會之精彩世界】</Title> </response> <response> <href>http://dotnet.aspx.cc/ShowList.ASPx&amp;id=1</href> <getlastmodified>2003-11-2 10:52:26</getlastmodified> <Title>【孟憲會之精彩世界】ASP.Net</Title> </response> <response> <href>http://dotnet.ASPx.cc/CoolMenu/main.htm</href> <getlastmodified>1999-02-21 22:07:43</getlastmodified> <Title>【孟憲會之精彩世界】DHtml精彩放送</Title> </response> </multistatus>

查看轉換結果

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved