Answers for "to_json ruby"

0

ruby json to object

require 'json'

data = JSON.parse(json_data)
Posted by: Guest on April-21-2021
-1

how to json into hash ruby

response = Faraday.get('https://api.github.com/users/your_username')
r = JSON.parse(response.body, symbolize_names: true)
#OR
JSON.parse(response.body)
#'symbolize_names' turns the keys in this hash into symbols, not required
#JSON.parse is what turns the JSON object into a hash
Posted by: Guest on October-06-2020

Browse Popular Code Answers by Language