首頁 > 軟體

XML基本概念XPath、XSLT與XQuery函數介紹

2022-05-31 14:00:44

一、XPath查詢

XSL指擴充套件樣式表語言(EXtensible Stylesheet Language)。

官方網站:https://www.w3.org/TR/xpath/

XSL - 不僅僅是樣式表語言,包括三部分:

  • XSLT :一種用於轉換 XML 檔案的語言。
  • XPath :一種用於在 XML 檔案中導航的語言。
  • XSL-FO :一種用於格式化 XML 檔案的語言。

XPath

  • XML DOM使用XPath解析HTML。
  • HTMLAgilityPack使用XPath解析HTML (JumonyHTML採用CSS3方式解析HTML)。

1、選取節點

XPath 使用路徑表示式在 XML 檔案中選取節點。節點是通過沿著路徑或者 step 來選取的。

下面列出了最有用的路徑表示式:

  • nodename:選取此節點的所有子節點。

  • /:從根節點選取。

  • //:選擇檔案中的節點,而不考慮它們的位置。

  • . :選取當前節點。

  • .. :選取當前節點的父節點。

  • @ :選取屬性。

範例:

  • bookstore : 選取 bookstore 元素的所有子節點。

  • /bookstore:選取根元素 bookstore。 
    註釋:假如路徑起始於正斜槓( / ),則此路徑始終代表到某元素的絕對路徑!

  • bookstore/book:選取屬於 bookstore 的子元素的所有 book 元素。

  • //book:選取所有 book 子元素,而不管它們在檔案中的位置。

  • bookstore//book:選擇屬於 bookstore 元素的後代的所有 book 元素,而不管它們位於 bookstore 之下的什麼位置。

  • //@lang:選取名為 lang 的所有屬性。

2、謂語(Predicates)

謂語用來查詢某個特定的節點或者包含某個指定的值的節點。謂語被嵌在方括號中。

範例:

  • /bookstore/book[1] : 選取屬於 bookstore 子元素的第一個 book 元素。

  • /bookstore/book[last()] : 選取屬於 bookstore 子元素的最後一個 book 元素。

  • /bookstore/book[last()-1] : 選取屬於 bookstore 子元素的倒數第二個 book 元素。

  • /bookstore/book[position()<3] : 選取最前面的兩個屬於 bookstore 元素的子元素的 book 元素。

  • //title[@lang] : 選取所有擁有名為 lang 的屬性的 title 元素。

  • //title[@lang='eng'] : 選取所有 title 元素,且這些元素擁有值為 eng 的 lang 屬性。

  • /bookstore/book[price>35.00] : 選取 bookstore 元素的所有 book 元素,且其中的 price 元素的值須大於 35.00。

  • /bookstore/book[price>35.00] /title: 選取 bookstore 元素中的 book 元素的所有 title 元素,且其中的 price 元素的值須大於 35.00。

  • book[count(author)=2] : 有兩個author元素的Book

  • book/*[starts-with(name(),’B’)] : 以B開頭的並在book下的元素。

  • book/*[contains(name(),’B’)] : 包含’B’名稱的元素

  • book/*[string-length(name())==3]  : 元素的名稱長度為3

  • 選擇含有某子元素的元素://table[.//img]

3、選取未知節點

XPath 萬用字元可用來選取未知的 XML 元素。

  • * : 匹配任何元素節點。

  • @* : 匹配任何屬性節點。

  • node() : 匹配任何型別的節點。

範例:

  • /bookstore/*: 選取 bookstore 元素的所有子元素。

  • //*: 選取檔案中的所有元素。

  • //title[@*]: 選取所有帶有屬性的 title 元素。

4、選取若干路徑

通過在路徑表示式中使用 "|" 運運算元,您可以選取若干個路徑。

範例:

  • //book/title | //book/price :  選取 book 元素的所有 title 和 price 元素。

  • //title | //price :  選取檔案中的所有 title 和 price 元素。

  • /bookstore/book/title | //price :  選取屬於 bookstore 元素的 book 元素的所有 title 元素,以及檔案中所有的 price 元素。

5、XPath 軸(Axes)

軸可定義相對於當前節點的節點集。

  • ancestor :  選取當前節點的所有先輩(父、祖父等)。

  • ancestor-or-self:  選取當前節點的所有先輩(父、祖父等)以及當前節點本身。

  • attribute :  選取當前節點的所有屬性。

  • child:  選取當前節點的所有子元素。

  • descendant:  選取當前節點的所有後代元素(子、孫等)。

  • descendant-or-self:  選取當前節點的所有後代元素(子、孫等)以及當前節點本身。

  • following:  選取檔案中當前節點的結束標籤之後的所有節點。

  • namespace:  選取當前節點的所有名稱空間節點。

  • parent:  選取當前節點的父節點。

  • preceding:  選取檔案中當前節點的開始標籤之前的所有節點。

  • preceding-sibling:  選取當前節點之前的所有同級節點。

  • self:  選取當前節點。

步的語法:軸名稱::節點測試[謂語]

範例:

  • child::book:  選取所有屬於當前節點的子元素的 book 節點。

  • attribute::lang:  選取當前節點的 lang 屬性。

  • child::*:  選取當前節點的所有子元素。

  • attribute::*:  選取當前節點的所有屬性。

  • child::text():  選取當前節點的所有文字子節點。

  • child::node():  選取當前節點的所有子節點。

  • descendant::book:  選取當前節點的所有 book 後代。

  • ancestor::book:  選擇當前節點的所有 book 先輩。

  • ancestor-or-self::book:  選取當前節點的所有 book 先輩以及當前節點(如果此節點是 book 節點)

  • child:: * /child::price:  選取當前節點的所有 price 孫節點。

6、XPath 運運算元

下面列出了可用在 XPath 表示式中的運運算元:

  • | : 計算兩個節點集
  • +: 加法
  • -: 減法
  • *: 乘法
  • div: 除法
  • =: 等於
  • !=: 不等於
  • < : 小於
  • <=: 小於或等於
  • > : 大於
  • >=: 大於或等於
  • or: 或
  • and: 與
  • mod: 計算除法的餘數

二、XSLT

指 XSL 轉換。在此教學中,你將學習如何使用 XSLT 將 XML 檔案轉換為其他檔案,比如 XHTML。

XSLT 使用 XPath 在 XML 檔案中進行導航。

1、樣式表宣告

把檔案宣告為 XSL 樣式表的根元素是 或 。

註釋: 和 是完全同義的,均可被使用!

根據 W3C 的 XSLT 標準,宣告 XSL 樣式表的正確方法是:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

或者:

<xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

如需存取 XSLT 的元素、屬性以及特性,我們必須在檔案頂端宣告 XSLT 名稱空間。

2、建立 XSL 樣式表

然後建立一個帶有轉換模板的 XSL 樣式表("cdcatalog.xsl"):

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
  <html>
  <body>
    <h2>My CD Collection</h2>
    <table border="1">
    <tr bgcolor="#9acd32">
      <th align="left">Title</th>
      <th align="left">Artist</th>
    </tr>
    <xsl:for-each select="catalog/cd">
    <tr>
      <td><xsl:value-of select="title"/></td>
      <td><xsl:value-of select="artist"/></td>
    </tr>
    </xsl:for-each>
    </table>
  </body>
  </html>
</xsl:template>
</xsl:stylesheet>

3、把 XSL 樣式表連結到 XML 檔案

向 XML 檔案("cdcatalog.xml")新增 XSL 樣式表參照:

<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xsl" href="cdcatalog.xsl" rel="external nofollow" ?>
<catalog>
    <cd>
        <title>Empire Burlesque</title>
        <artist>Bob Dylan</artist>
        <country>USA</country>
        <company>Columbia</company>
        <price>10.90</price>
        <year>1985</year>
    </cd>
    <cd>
        <title>Hide your heart</title>
        <artist>Bonnie Tyler</artist>
        <country>UK</country>
        <company>CBS Records</company>
        <price>9.90</price>
        <year>1988</year>
    </cd>
</catalog>

如果您使用的瀏覽器相容 XSLT,它會很順利地把您的 XML 轉換為 XHTML。(注意本地檔案沒效果,要放到Web伺服器上才能轉換)

4、XSL元素

1、 元素

XSL 樣式表由一個或多套被稱為模板(template)的規則組成。

每個模板含有當某個指定的節點被匹配時所應用的規則。

XSL 樣式表由一個或多套被稱為模板(template)的規則組成。

每個模板含有當某個指定的節點被匹配時所應用的規則。

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
 <html>
 <body>
   <h2>My CD Collection</h2>
   <table border="1">
     <tr bgcolor="#9acd32">
       <th>Title</th>
       <th>Artist</th>
     </tr>
     <tr>
       <td>.</td>
       <td>.</td>
     </tr>
   </table>
 </body>
 </html>
</xsl:template>

</xsl:stylesheet>

元素定義了一個模板。而 match="/" 屬性則把此模板與 XML 原始檔的根相聯絡。

元素內部的內容定義了寫到輸出結果的 HTML 程式碼。

2、 元素

元素用於提取某個選定節點的值,並把值新增到轉換的輸出流中:

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
 <html>
 <body>
   <h2>My CD Collection</h2>
   <table border="1">
     <tr bgcolor="#9acd32">
       <th>Title</th>
       <th>Artist</th>
     </tr>
     <tr>
      <td><xsl:value-of select="catalog/cd/title"/></td>
      <td><xsl:value-of select="catalog/cd/artist"/></td>
     </tr>
   </table>
 </body>
 </html>
</xsl:template>

</xsl:stylesheet>

註釋:select 屬性的值是一個 XPath 表示式。此表示式的工作方式類似於定位某個檔案系統,在其中正斜槓可選擇子目錄。

這個例子的結果有一點缺陷:僅有一行資料從 XML 檔案被拷貝到輸出結果。

可以使用 元素來回圈遍歷 XML 元素,並顯示所有的記錄。

3、 元素

元素可用於選取指定的節點集中的每個 XML 元素。

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
  <html>
  <body>
    <h2>My CD Collection</h2>
    <table border="1">
      <tr bgcolor="#9acd32">
        <th>Title</th>
        <th>Artist</th>
      </tr>
      <xsl:for-each select="catalog/cd">
        <tr>
          <td><xsl:value-of select="title"/></td>
          <td><xsl:value-of select="artist"/></td>
        </tr>
      </xsl:for-each>
    </table>
  </body>
  </html>
</xsl:template>

</xsl:stylesheet>

結果過濾

通過在 元素中新增一個選擇屬性的判別式,我們也可以過濾從 XML 檔案輸出的結果。

<xsl:for-each select="catalog/cd[artist='Bob Dylan']">

合法的過濾運運算元:

  • =  (等於)
  • != (不等於)
  • < (小於)
  • > (大於)

4、 元素

元素用於對結果進行排序。

如需對結果進行排序,只要簡單地在 XSL 檔案中的 元素內部新增一個 元素:

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
  <html>
  <body>
    <h2>My CD Collection</h2>
    <table border="1">
      <tr bgcolor="#9acd32">
        <th>Title</th>
        <th>Artist</th>
      </tr>
      <xsl:for-each select="catalog/cd">
      <xsl:sort select="artist"/>
      <tr>
        <td><xsl:value-of select="title"/></td>
        <td><xsl:value-of select="artist"/></td>
      </tr>
      </xsl:for-each>
    </table>
  </body>
  </html>
</xsl:template>

</xsl:stylesheet>

5、 元素

元素用於放置針對 XML 檔案內容的條件測試。

如需新增有條件的測試,請在 XSL 檔案中的 元素內部新增 元素:

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
  <html>
  <body>
    <h2>My CD Collection</h2>
    <table border="1">
      <tr bgcolor="#9acd32">
        <th>Title</th>
        <th>Artist</th>
      </tr>
      <xsl:for-each select="catalog/cd">
      <xsl:if test="price > 10">
        <tr>
          <td><xsl:value-of select="title"/></td>
          <td><xsl:value-of select="artist"/></td>
        </tr>
      </xsl:if>
      </xsl:for-each>
    </table>
  </body>
  </html>
</xsl:template>
</xsl:stylesheet>

6、 元素

元素用於結合 和 來表達多重條件測試。可以包含多個 元素

要插入針對 XML 檔案的多重條件測試,請向 XSL 檔案新增 、 以及 :

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
  <html>
  <body>
    <h2>My CD Collection</h2>
    <table border="1">
      <tr bgcolor="#9acd32">
        <th>Title</th>
        <th>Artist</th>
      </tr>
      <xsl:for-each select="catalog/cd">
      <tr>
        <td><xsl:value-of select="title"/></td>
          <xsl:choose>
          <xsl:when test="price > 10">
            <td bgcolor="#ff00ff">
            <xsl:value-of select="artist"/></td>
          </xsl:when>
          <xsl:otherwise>
            <td><xsl:value-of select="artist"/></td>
          </xsl:otherwise>
        </xsl:choose>
      </tr>
      </xsl:for-each>
    </table>
  </body>
  </html>
</xsl:template>

</xsl:stylesheet>

7、 元素

元素可把一個模板應用於當前的元素或者當前元素的子節點。

假如我們向 元素新增一個 select 屬性,此元素就會僅僅處理與屬性值匹配的子元素。我們可以使用 select 屬性來規定子節點被處理的順序。

請看下面的 XSL 樣式表:

<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

  <xsl:template match="/">
    <html>
      <body>
        <h2>My CD Collection</h2>
        <xsl:apply-templates/>
      </body>
    </html>
  </xsl:template>

  <xsl:template match="cd">
    <p>
      <xsl:apply-templates select="title"/>
      <xsl:apply-templates select="artist"/>
    </p>
  </xsl:template>

  <xsl:template match="title">
    Title: <span style="color:#ff0000">
      <xsl:value-of select="."/>
    </span>
    <br />
  </xsl:template>


  <xsl:template match="artist">
    Artist: <span style="color:#00ff00">
      <xsl:value-of select="."/>
    </span>
    <br />
  </xsl:template>

</xsl:stylesheet>

8、 元素

元素用於宣告區域性或全域性的變數。

註釋:如果被宣告為頂層元素,則該變數是全域性的,而如果在模板內宣告,則變數是原生的。 一旦您設定了變數的值,就無法改變或修改該值!

提示:您可以通過 元素的內容或通過 select 屬性,向變數新增值!

下面的例子通過 元素的內容為變數 "header" 賦值:

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:variable name="header">
  <tr>
  <th>Element</th>
  <th>Description</th>
  </tr>
</xsl:variable>

<xsl:template match="/">
  <html>
  <body>
  <table>
    <xsl:copy-of select="$header" />
    <xsl:for-each select="reference/record">
    <tr>
    <xsl:if category="XML">
      <td><xsl:value-of select="element"/></td>
      <td><xsl:value-of select="description"/></td>
    </xsl:if>
    </tr>
    </xsl:for-each>
  </table>
  <br />
  <table>
    <xsl:copy-of select="$header" />
    <xsl:for-each select="table/record">
    <tr>
    <xsl:if category="XSL">
      <td><xsl:value-of select="element"/></td>
      <td><xsl:value-of select="description"/></td>
    </xsl:if>
    </tr>
    </xsl:for-each>
  </table>
  </body>
  </html>
</xsl:template>

</xsl:stylesheet>

三、XQuery

XQuery 相對於 XML的作用,等同於 SQL 相對於資料庫。

XQuery 被設計用來查詢 XML 資料。 不僅僅限於 XML 檔案,還包括任何可以 XML 形態呈現的資料,包括資料庫。

SQLServer XML型別使用基於XPath的XQuery。

XQuery 也被稱為 XML Query。

1、XQuery 的基礎語法規則:

  • XQuery 對大小寫敏感
  • XQuery 的元素、屬性以及變數必須是合法的 XML 名稱。
  • XQuery 字串值可使用單引號或雙引號。
  • XQuery 變數由 “$” 並跟隨一個名稱來進行定義,舉例,$bookstore
  • XQuery 註釋被 (: 和 :) 分割,例如,(: XQuery 註釋 :)

2、FLWOR 表示式

FLWOR 是 "For, Let, Where, Order by, Return" 的只取首字母縮寫。

  • for 語句把 bookstore 元素下的所有 book 元素提取到名為 $x 的變數中。
  • where 語句選取了 price 元素值大於 30 的 book 元素。
  • order by 語句定義了排序次序。將根據 title 元素進行排序。
  • return 語句規定返回什麼內容。在此返回的是 title 元素。

下面這個路徑表示式可選取 bookstore 元素下的 book 元素下所有的 title 元素,並且其中的 price 元素的值必須大於 30。:

doc("books.xml")/bookstore/book[price>30]/title --doc() 用於開啟 "books.xml" 檔案:

下面這個 FLWOR 表示式所選取的資料和上面的路徑表示式是相同的:

for $x in doc("books.xml")/bookstore/book
where $x/price>30
 return $x/title

上面的 XQuery 表示式結果是:

<title lang="en">XQuery Kick Start</title>
<title lang="en">Learning XML</title>

通過 FLWOR,您可以對結果進行排序:

for $x in doc("books.xml")/bookstore/book
where $x/price>30
order by $x/title
return $x/title

上面的 XQuery 表示式的結果:

<title lang="en">Learning XML</title>
<title lang="en">XQuery Kick Start</title>

到此這篇關於XML基本概念XPath、XSLT與XQuery函數的文章就介紹到這了。希望對大家的學習有所幫助,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com