在Ruby中,處理JSON數據的方法是使用內置的JSON標準庫。可以使用該庫中的方法來解析JSON數據、將數據轉換為JSON格式。以下是一些常用的JSON處理方法:
require 'json'
data = { name: 'John', age: 30 }
json_data = data.to_json
puts json_data
require 'json'
json_data = '{"name": "John", "age": 30}'
data = JSON.parse(json_data)
puts data['name']
puts data['age']
require 'json'
file = File.read('data.json')
data = JSON.parse(file)
puts data['name']
puts data['age']
通過使用這些方法,可以方便地處理JSON數據并與其他系統進行交互。