小编典典

Ruby XML到JSON转换器?

json

是否有在Ruby中将XML转换为JSON的库?


阅读 274

收藏
2020-07-27

共1个答案

小编典典

一个简单的把戏:

首先,您需要gem install json,然后在使用Rails时可以执行以下操作:

require 'json'
require 'active_support/core_ext'
Hash.from_xml('<variable type="product_code">5</variable>').to_json #=> "{\"variable\":\"5\"}"

如果您不使用Rails,则可以gem install activesupport要求它,并且事情应该顺利进行。

例:

require 'json'
require 'net/http'
require 'active_support/core_ext/hash'
s = Net::HTTP.get_response(URI.parse('https://stackoverflow.com/feeds/tag/ruby/')).body
puts Hash.from_xml(s).to_json
2020-07-27