En essayant d’analyser du JSON, pourquoi text
est-il vide?
Sortie désirée:
text
devrait retourner Hello world\n\nApple, Harbor\n\nBanana, Kitchen\n\nMango, Bedroom
text = "Hello world"
json = '{"fruits": [{"name": "Apple", "location": "Harbor"}, {"name": "Banana", "location": "Kitchen"}, {"name": "Mango", "location": "Bedroom"}]}'
fruits = JSON.parse(json)
def format_fruits(fruits)
fruits.each do |fruit|
puts "\n\n#{ fruit[0]['name'] }, #{ fruit[0]['location'] }"
end.to_sentence
end
text += format_fruits(fruits)
text
Sortie courant:
TypeError: no implicit conversion of Hash into String
from (irb):5:in `+'
from (irb):5
from /home/mark/.gem/Ruby/2.1.1/gems/railties-4.1.7/lib/Rails/commands/console.rb:90:in `start'
from /home/mark/.gem/Ruby/2.1.1/gems/railties-4.1.7/lib/Rails/commands/console.rb:9:in `start'
from /home/mark/.gem/Ruby/2.1.1/gems/railties-4.1.7/lib/Rails/commands/commands_tasks.rb:69:in `console'
from /home/mark/.gem/Ruby/2.1.1/gems/railties-4.1.7/lib/Rails/commands/commands_tasks.rb:40:in `run_command!'
from /home/mark/.gem/Ruby/2.1.1/gems/railties-4.1.7/lib/Rails/commands.rb:17:in `<top (required)>'
from /home/mark/.gem/Ruby/2.1.1/gems/activesupport-4.1.7/lib/active_support/dependencies.rb:247:in `require'
from /home/mark/.gem/Ruby/2.1.1/gems/activesupport-4.1.7/lib/active_support/dependencies.rb:247:in `block in require'
from /home/mark/.gem/Ruby/2.1.1/gems/activesupport-4.1.7/lib/active_support/dependencies.rb:232:in `load_dependency'
from /home/mark/.gem/Ruby/2.1.1/gems/activesupport-4.1.7/lib/active_support/dependencies.rb:247:in `require'
from /home/mark/myapp/bin/Rails:8:in `<top (required)>'
from /home/mark/.gem/Ruby/2.1.1/gems/activesupport-4.1.7/lib/active_support/dependencies.rb:241:in `load'
from /home/mark/.gem/Ruby/2.1.1/gems/activesupport-4.1.7/lib/active_support/dependencies.rb:241:in `block in load'
from /home/mark/.gem/Ruby/2.1.1/gems/activesupport-4.1.7/lib/active_support/dependencies.rb:232:in `load_dependency'
from /home/mark/.gem/Ruby/2.1.1/gems/activesupport-4.1.7/lib/active_support/dependencies.rb:241:in `load'
from /home/mark/.gem/Ruby/2.1.1/gems/spring-1.1.3/lib/spring/commands/Rails.rb:6:in `call'
from /home/mark/.gem/Ruby/2.1.1/gems/spring-1.1.3/lib/spring/command_wrapper.rb:38:in `call'
from /home/mark/.gem/Ruby/2.1.1/gems/spring-1.1.3/lib/spring/application.rb:180:in `block in serve'
from /home/mark/.gem/Ruby/2.1.1/gems/spring-1.1.3/lib/spring/application.rb:153:in `fork'
from /home/mark/.gem/Ruby/2.1.1/gems/spring-1.1.3/lib/spring/application.rb:153:in `serve'
from /home/mark/.gem/Ruby/2.1.1/gems/spring-1.1.3/lib/spring/application.rb:128:in `block in run'
from /home/mark/.gem/Ruby/2.1.1/gems/spring-1.1.3/lib/spring/application.rb:122:in `loop'
from /home/mark/.gem/Ruby/2.1.1/gems/spring-1.1.3/lib/spring/application.rb:122:in `run'
from /home/mark/.gem/Ruby/2.1.1/gems/spring-1.1.3/lib/spring/application/boot.rb:18:in `<top (required)>'
from /home/mark/.rubies/Ruby-2.1.1/lib/Ruby/2.1.0/rubygems/core_ext/kernel_require.rb:55:in `require'
from /home/mark/.rubies/Ruby-2.1.1/lib/Ruby/2.1.0/rubygems/core_ext/kernel_require.rb:55:in `require'
from -e:1:in `<main>'irb(main):006:0> text
=> "Hello world"
irb(main):007:0>
L'erreur est le résultat de l'appel Array#to_sentence
sur un hachage.
Voici une version corrigée avec des commentaires indiquant les modifications:
require 'json'
text = "Hello world"
json = '{"fruits": [{"name": "Apple", "location": "Harbor"}, {"name": "Banana", "location": "Kitchen"}, {"name": "Mango", "location": "Bedroom"}]}'
fruits = JSON.parse(json)['fruits'] # append ['fruits']
def format_fruits(fruits)
fruits.map do |fruit| # change each -> map
"\n\n#{ fruit['name'] }, #{ fruit['location'] }" # delete puts, [0]
end.join # change to_sentence -> join
end
text += format_fruits(fruits)
puts text
Sortie:
Hello world
Apple, Harbor
Banana, Kitchen
Mango, Bedroom
Au cas où votre JSON contient toujours la clé "fruits", vous pouvez y parvenir assez facilement. Ici:
fruits = JSON.parse(json)
#=> {"fruits"=>[{"name"=>"Apple", "location"=>"Harbor"}, {"name"=>"Banana", "location"=>"Kitchen"}, {"name"=>"Mango", "location"=>"Bedroom"}]}
fruits["fruits"].each { |hash|
puts "\n\n#{hash['name']}, #{hash['location']}"
}
Une autre façon de faire cela sans utiliser la clé fruits
:
fruits.values.first.each { |hash|
puts "\n\n#{hash['name']}, #{hash['location']}"
}