这是我要查询的xml数据
<bookstore>
<book category="COOKING">
<title lang="en">Everyday Italian</title>
<author>Giada De Laurentiis</author>
<year>2005</year>
<price dollarValue="1.5">30.00</price>
</book>
<book category="CHILDREN">
<title lang="en">Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price dollarValue="1.5">29.99</price>
</book>
<book category="WEB">
<title lang="en">XQuery Kick Start</title>
<author>James McGovern</author>
<author>Per Bothner</author>
<author>Kurt Cagle</author>
<author>James Linn</author>
<author>Vaidyanathan Nagarajan</author>
<year>2003</year>
<price dollarValue="1.5">49.99</price>
</book>
<book category="WEB">
<title lang="en">Learning XML</title>
<author>Erik T. Ray</author>
<year>2003</year>
<price dollarValue="1.5">39.95</price>
</book>
</bookstore>
我需要同时提取位于价格内的“WEB”类别author
文字和dollar
属性
这是我最好的查询,(不工作)
//book[@category="WEB"]/*[self::author//text() or self::price/@dollarValue]
我应修改此查询的哪一部分才能使其正常工作?
答案 0 :(得分:1)
尝试:
//book[@category="WEB"]/author/(text()|../price/@dollarValue)
答案 1 :(得分:1)
您正在尝试查询两个不同的内容:属性和文本节点。一次完成任务的最接近的事情可能是使用联合运算符(|
)组合使用2个XPath查询:
(//book[@category="WEB"]/author/text() | //book[@category="WEB"]/price/@dollarValue)