宝石 一个快速的JSON解析器和Object marshaller作为Ruby gem。 3.0版已发布! 3.0提供了更好的json gem和Rails兼容性。 它还提供了其他优化选项。 使用 require 'oj' h = { 'one' => 1 , 'array' => [ true , false ] } json = Oj . dump ( h ) # json = # { # "one":1, # "array":[ # true, # false # ] # } h2 = Oj . load ( json ) puts "Same? #{ h