替代哈希到 JSON
require 'json'
document = JSON 'test' => 23 # => "{\"test\":23}"
要么
require 'json'
document = JSON['test' => 23] # => "{\"test\":23}"
require 'json'
document = JSON 'test' => 23 # => "{\"test\":23}"
要么
require 'json'
document = JSON['test' => 23] # => "{\"test\":23}"