Mejoras practicas para pasar un array o un hash
AUTOR PREGUNTA #1
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#2
#3
>> require 'json' => true >> {:name => 'Pedro', :emails => ['test1@test.com', 'test2@test.com']}.to_json => "{"emails":["test1@test.com","test2@test.com"],"name":"Pedro"}" >> json_string = _ => "{"emails":["test1@test.com","test2@test.com"],"name":"Pedro"}" >> JSON.parse(json_string) => {"name"=>"Pedro", "emails"=>["test1@test.com", "test2@test.com"]}