Nokogiri:如何通过其子标签内容之一获取 xml 类
例如,我有一个 XML 对象:
<PARENT>
<ROW>
<ID>1</ID>
<INFO>1234</INFO>
</ROW>
<ROW>
<ID>2</ID>
<INFO>4321</INFO>
</ROW>
<ROW>
<ID>3</ID>
<INFO>4444</INFO>
</ROW>
</PARENT>
位于名为 rows
的变量中。
xml = Nokogiri::XML(rows)
我需要的是检索 ID 标签内的 ID 搜索的整个 ROW 子标签。
For example, I've got this XML object:
<PARENT>
<ROW>
<ID>1</ID>
<INFO>1234</INFO>
</ROW>
<ROW>
<ID>2</ID>
<INFO>4321</INFO>
</ROW>
<ROW>
<ID>3</ID>
<INFO>4444</INFO>
</ROW>
</PARENT>
in a variable called rows
.
xml = Nokogiri::XML(rows)
What I need is to retrieve whole ROW subtag searching by ID inside of the ID tag.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您想将结果细化到一个特定节点,请将其添加到末尾。
And if you want to refine the result to one specific node, add it to the end.
XPath 允许您执行以下操作:
XPath allows you to do this:
你可以这样得到整行:
You can get the whole row like this: