我有一个具有以下结构的XML
<Root>
<Batch name="value">
<Document id="ID1">
<Tags>
<Tag id="ID11" name="name11">Contents</Tag>
<Tag id="ID12" name="name12">Contents</Tag>
</Tags>
</Document>
<Document id="ID2">
<Tags>
<Tag id="ID21" name="name21">Contents</Tag>
<Tag id="ID22" name="name22">Contents</Tag>
</Tags>
</Document>
</Batch>
</Root>
我想使用以下内容提取每个Document节点的特定标记的内容:
xml.xpath('//Document/Tags').each do |node|
puts xml.xpath('//Root/Batch/Document/Tags/Tag[@id="ID11"]').text
end
预计将使用id =&#34; ID11&#34;提取标签的内容。对于每2个节点,但不检索任何内容。有什么想法吗?
答案 0 :(得分:1)
xpath中有一个小错误,你正在使用/ Documents / Document,而你粘贴的XML有点不同。
这应该有效:
//Root/Batch/Document/Tags/Tag[@id="ID11"]
我最喜欢的方法是使用#css方法:
xml.css('Tag[@id="ID11"]').each do |node|
puts node.text
end
答案 1 :(得分:0)
似乎使用的xpath是错误的。
'//Root/Batch/Documents/Document/Tags/Tag[@id="ID11"]'
shoud be
'//Root/Batch/Document/Tags/Tag[@id="ID11"]'
答案 2 :(得分:0)
我设法使用以下代码:
xml.xpath('//Document/Tags').each do |node|
node.xpath("Tag[@id='ID11']").text
end