尝试使用nokogiri从xmlapi输出信息



我正试图将信息输出到一个网页,该网页取自一个大学项目的XML传输api。我用的是铁轨上的红宝石和野宫宝石。我可以接受这些信息,但当我试图在结果页面上输出时,它只是一片空白。

以下获取api信息的方法在相关的rails控制器文件中。

def results
require 'nokogiri'
@doc = Nokogiri::XML(open("http://api.irishrail.ie/realtime/realtime.asmx/getAllStationsXML"))
end

我可以看到xml信息正在被传递到视图中。当我刚将<%= @doc %>放在视图中时,它会导致xml格式的信息打印在页面上。

然而,我显然需要正确格式化它。我在视图中有下面的代码,并尝试将其放入控制器方法中(减去<%%>符号(,但似乎不起作用。

<% @doc.xpath('//StationId').each do |station_element| %>
<%= station_element.text %>
<% end %>

这就是XML数据的样子:

<?xml version="1.0" encoding="UTF-8"?>
<ArrayOfObjStation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://api.irishrail.ie/realtime/">
<objStation>
<StationDesc>Belfast Central</StationDesc>
<StationAlias />
<StationLatitude>54.6123</StationLatitude>
<StationLongitude>-5.91744</StationLongitude>
<StationCode>BFSTC</StationCode>
<StationId>228</StationId>
</objStation>
<objStation>
<StationDesc>Lisburn</StationDesc>
<StationAlias />
<StationLatitude>54.514</StationLatitude>
<StationLongitude>-6.04327</StationLongitude>
<StationCode>LBURN</StationCode>
<StationId>238</StationId>
</objStation>
</ArrayOfObjStation>

如果有人能指出我需要什么代码来打印xml数据的某些部分,我将不胜感激,谢谢。

您的XML位于http://api.irishrail.ie/realtime/realtime.asmx/getAllStationsXML具有名称空间(我修改了xml以反映API返回的内容(

您需要在xpath表示法中使用名称空间前缀才能使其工作。

@doc.xpath('//StationId')替换为@doc.xpath('//xmlns:StationId')以修复它。

相关内容

  • 没有找到相关文章

最新更新