我正在从 xml 文档中读取数据,并使用 rails 和 REMXL 将其放置在网页上。我用
@description1=XPath.match( xmldoc, "////description" )
将信息放入数组中,然后在我的视图中循环。但是使用时
<%= h(@description1[k]) %>
所以看起来像
<description>fuzzy slippers</description>
在网页上。有没有去除标签的好方法?谢谢
我正在从 xml 文档中读取数据,并使用 rails 和 REMXL 将其放置在网页上。我用
@description1=XPath.match( xmldoc, "////description" )
将信息放入数组中,然后在我的视图中循环。但是使用时
<%= h(@description1[k]) %>
所以看起来像
<description>fuzzy slippers</description>
在网页上。有没有去除标签的好方法?谢谢
您可能想查看 httparty:http: //github.com/jnunemaker/httparty
你试过了吗
<%= h(@description1[k].text) %>
它显示了什么?
您使用的 xpath 将返回一组节点。要仅获取内容,请使用:
@description1 = XPath.match(xmldoc, "////description/text()")