Nokogiri XMLドキュメントをハッシュに変換する簡単な方法はありますか?
RailsのHash.from_xml
。
このコードをlibxml-Ruby(1.1.3)で使用します。私自身はnokogiriを使用していませんが、とにかくlibxml-Rubyを使用していることを理解しています。また、XML要素をRubyオブジェクトにマッピングするROXML( http://github.com/Empact/roxml/tree )をご覧ください。 libxmlの上に構築されました。
# USAGE: Hash.from_libxml(YOUR_XML_STRING)
require 'xml/libxml'
# adapted from
# http://movesonrails.com/articles/2008/02/25/libxml-for-active-resource-2-0
class Hash
class << self
def from_libxml(xml, strict=true)
begin
XML.default_load_external_dtd = false
XML.default_pedantic_parser = strict
result = XML::Parser.string(xml).parse
return { result.root.name.to_s => xml_node_to_hash(result.root)}
rescue Exception => e
# raise your custom exception here
end
end
def xml_node_to_hash(node)
# If we are at the root of the document, start the hash
if node.element?
if node.children?
result_hash = {}
node.each_child do |child|
result = xml_node_to_hash(child)
if child.name == "text"
if !child.next? and !child.prev?
return result
end
elsif result_hash[child.name.to_sym]
if result_hash[child.name.to_sym].is_a?(Object::Array)
result_hash[child.name.to_sym] << result
else
result_hash[child.name.to_sym] = [result_hash[child.name.to_sym]] << result
end
else
result_hash[child.name.to_sym] = result
end
end
return result_hash
else
return nil
end
else
return node.content.to_s
end
end
end
end
Nokogiri XMLドキュメントをハッシュに変換する場合は、次の手順を実行します。
require 'active_support/core_ext/hash/conversions'
hash = Hash.from_xml(nokogiri_document.to_s)
これは、要素と属性の両方の名前空間情報を含む堅牢なハッシュを作成する、はるかに単純なバージョンです。
require 'nokogiri'
class Nokogiri::XML::Node
TYPENAMES = {1=>'element',2=>'attribute',3=>'text',4=>'cdata',8=>'comment'}
def to_hash
{kind:TYPENAMES[node_type],name:name}.tap do |h|
h.merge! nshref:namespace.href, nsprefix:namespace.prefix if namespace
h.merge! text:text
h.merge! attr:attribute_nodes.map(&:to_hash) if element?
h.merge! kids:children.map(&:to_hash) if element?
end
end
end
class Nokogiri::XML::Document
def to_hash; root.to_hash; end
end
実際に見られるもの:
xml = '<r a="b" xmlns:z="foo"><z:a>Hello <b z:m="n" x="y">World</b>!</z:a></r>'
doc = Nokogiri::XML(xml)
p doc.to_hash
#=> {
#=> :kind=>"element",
#=> :name=>"r",
#=> :text=>"Hello World!",
#=> :attr=>[
#=> {
#=> :kind=>"attribute",
#=> :name=>"a",
#=> :text=>"b"
#=> }
#=> ],
#=> :kids=>[
#=> {
#=> :kind=>"element",
#=> :name=>"a",
#=> :nshref=>"foo",
#=> :nsprefix=>"z",
#=> :text=>"Hello World!",
#=> :attr=>[],
#=> :kids=>[
#=> {
#=> :kind=>"text",
#=> :name=>"text",
#=> :text=>"Hello "
#=> },
#=> {
#=> :kind=>"element",
#=> :name=>"b",
#=> :text=>"World",
#=> :attr=>[
#=> {
#=> :kind=>"attribute",
#=> :name=>"m",
#=> :nshref=>"foo",
#=> :nsprefix=>"z",
#=> :text=>"n"
#=> },
#=> {
#=> :kind=>"attribute",
#=> :name=>"x",
#=> :text=>"y"
#=> }
#=> ],
#=> :kids=>[
#=> {
#=> :kind=>"text",
#=> :name=>"text",
#=> :text=>"World"
#=> }
#=> ]
#=> },
#=> {
#=> :kind=>"text",
#=> :name=>"text",
#=> :text=>"!"
#=> }
#=> ]
#=> }
#=> ]
#=> }
これを見つけたのは、XMLを(Railsではなく)ハッシュに単純に変換しようとしたときです。私はノコギリを使うと思っていましたが、最終的には Nori になりました。
それから私のコードは些細なものでした:
response_hash = Nori.parse(response)
他のユーザーは、これが機能しないことを指摘しています。確認していませんが、解析メソッドがクラスからインスタンスに移動したようです。上記の私のコードはある時点で機能しました。新しい(未検証)コードは次のとおりです。
response_hash = Nori.new.parse(response)
Nokogiri を使用して、RubyハッシュへのXML応答を解析します。非常に高速です。
doc = Nokogiri::XML(response_body)
Hash.from_xml(doc.to_s)
設定で次のようなものを定義する場合:
ActiveSupport::XmlMini.backend = 'Nokogiri'
ノコギリのモジュールが含まれており、to_hash
方法。
Nokogiriで選択したノードが1つのタグのみで構成されている場合、次のようにキー、値を抽出し、それらを1つのハッシュに圧縮できます。
@doc ||= Nokogiri::XML(File.read("myxmldoc.xml"))
@node = @doc.at('#uniqueID') # this works if this selects only one node
nodeHash = Hash[*@node.keys().Zip(@node.values()).flatten]
Ruby配列のマージの詳細については、 http://www.Ruby-forum.com/topic/125944 を参照してください。