12件ヒット
[1-12件を表示]
(0.043秒)
ライブラリ
- json (12)
検索結果
-
JSON
:: State . new(options = {}) -> JSON :: State (108.0) -
自身を初期化します。
...オブジェクトを表す部分にある ':' の
前に挿入する文字列をセットします。デフォルトは空文字列です。
: :object_nl
JSON 形式の文字列中に現れる JavaScript のオブジェクトの行末に挿入する文字列を指定します。
デフォル......n"
json_state = JSON::State.new(indent: "\t")
json_state.class # => JSON::Ext::Generator::State
json_state.indent # => "\t"
//}
//emlist[例 JSON::State を指定][ruby]{
require "json"
json_state = JSON::State.new(indent: "\t")
copy = JSON::State.new(json_state)
copy.class # => JSON::Ext::Gene......rator::State
copy.indent # => "\t"
//}...