0

我有一个具有以下结构的 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

预计会为每 2 个节点提取 id = "ID11" 的标签内容,但什么也不检索。有任何想法吗?

4

3 回答 3

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
于 2012-06-20T12:07:57.367 回答
0

似乎使用的 xpath 是错误的。

'//Root/Batch/Documents/Document/Tags/Tag[@id="ID11"]'
shoud be
'//Root/Batch/Document/Tags/Tag[@id="ID11"]'
于 2012-06-20T12:02:14.583 回答
0

我设法让它使用以下代码:

xml.xpath('//Document/Tags').each do |node|
   node.xpath("Tag[@id='ID11']").text
end
于 2012-06-21T13:03:26.643 回答