我試圖檢查命名空間「X」的節點是否具有不同命名空間「Y」的子節點。我嘗試了以下xquery:xquery:查找父節點是否具有不同命名空間的子節點
declare namespace atom = "http://www.w3.org/2005/Atom";
declare namespace libx = "http://libx.org/xml/libx2";
let $doc := <node><entries xmlns="http://www.w3.org/2005/Atom" xmlns:libx="http://libx.org/xml/libx2">
<libx:book-entry><book>Book 1</book><author>Author 1 PQR</author><title>Title 1</title></libx:book-entry>
<libx:car-entry><car>Car 1</car><model>Model 1</model><price>Price 1 PQR</price></libx:car-entry>
</entries></node>,
$types := <types xmlns="http://libx.org/xml/libx2"><type>book-entry</type></types>,
$key := 'PQR'
for $type in $types/libx:type
return
for $entry in $doc/atom:entries/*[name() eq $type]
return $entry
我期望的結果是:<libx:book-entry><book>Book 1</book><author>Author 1 PQR</author><title>Title 1</title></libx:book-entry>
。但是,查詢返回null,因爲名稱函數不考慮不同的名稱空間。除name()之外是否還有另一個xquery函數,該函數接受一個名稱空間參數,該名稱空間參數將提供所需的結果。
感謝, 索尼
謝謝:)索尼 – sony 2011-05-23 08:50:22