12件ヒット
[1-12件を表示]
(0.023秒)
別のキーワード
ライブラリ
- json (12)
検索結果
-
JSON
:: Generator :: GeneratorMethods :: String # to _ json(state _ or _ hash = nil) -> String (7.0) -
自身から生成した JSON 形式の文字列を返します。
...のインスタンスか、
JSON::State.new の引数と同じ Hash を
指定します。
//emlist[例][ruby]{
require "json"
puts "test".to_json # => "test"
puts '"'.to_json # => "\""
puts "\\".to_json...