我正在使用 rest-client 从另一个网站返回 XML 并尝试使用 Nokogiri 来解析它。XML 如下所示:
<?xml version="1.0" encoding="UTF-8"?> ...
<MXAUTOKESet>
<AUTOKEY>
<AUTOKEYID>27</AUTOKEYID>
<AUTOKEYNAME>WORKORDERNUM</AUTOKEYNAME>
<ORGID>xxxx</ORGID>
<PREFIX>12-</PREFIX>
<SEED>38979</SEED>
...
我想提取“PREFIX”和“SEED”数字。
我的视图代码如下所示:
<% xml_data = RestClient.get "URL (sorry can't display it in this question)" %>
<%= xml_doc = Nokogiri::XML(xml_data)%>
第二行在页面上显示返回的 XML,因此,我知道 rest-client 正在工作,但我不知道如何访问已解析的 XML。
更新1:
我能够creationDateTime
使用以下方法摆脱 XML 标头。但是,我仍然无法获得 SEED 值:
<%= doc = Nokogiri::XML(xml_data)%>
<h4>Creation Date</h4>
<% root = doc.root %>
<%= root["creationDateTime"] %>
<h4>SEED</h4>
<%= seed = root.xpath("SEED").text %>
或者
<%= seed = doc.xpath("//SEED").inner_text %>