我有一个聚合产生这样的输出,但我需要使用xpath从密钥中获取名称,我是这个xml的新手,请指教。
<Aggregation name="area">
<Set key="name">
<Entry key="docCount">20</Entry>
</Set>
<Set key="name1">
<Entry key="docCount">16</Entry>
</Set>
<Set key="name2">
<Entry key="docCount">12</Entry>
</Set>
</Aggregation>
由于
答案 0 :(得分:-1)
最后,我检索了值
<Report>
<for-each select="$docSets" in="docSet">
<Key>{$docSet/@key}</Key>
<Value>{$docSet//Entry/text()}</Value>
</for-each>
</Report>