require 'nokogiri'
require 'open-uri'
# Get a Nokogiri::HTML::Document for the page we’re interested in...
@doc = Nokogiri::XML(File.open("data.xml"))
# Search for nodes by css
ids = []
@doc.xpath('//itemid').each do |link|
ids << link.content
end
hash = {}
i = 0
@doc.xpath('//realestate').each do |link|
hash.store(link.to_s)
i+=1
#p hash
#sleep 2
#break if i ==1
end
p hash
hash.store を除いて、すべて正常に動作しています。「hash_id を使用してハッシュ内にデータを保存する必要があります。ありがとうございます。