我必须从XML文件中获取一个类别列表,其中包含具有某些类别的子项的条目。 我尝试使用以下xPath
feed/entry/category
但我收到两个条目的类别。我如何获得每个条目的类别?
XML文件是:
<?xml version="1.0" encoding="UTF-8"?>
<feed>
<entry>
<id>1</id>
<category term="note"></category>
<category term="notebook"></category>
</entry>
<entry>
<id>2</id>
<category term="note1"></category>
<category term="notebook1"></category>
</entry>
</feed>
答案 0 :(得分:0)
尝试
feed/entry[N]/category
访问您案例中N
为1
或2
的特定条目的类别(或更一般情况下的任何其他索引)。