別のキーワード
ライブラリ
- json (12)
クラス
-
JSON
:: State (12)
検索結果
-
JSON
:: State . from _ state(options) -> JSON :: State (18119.0) -
与えられた options によって生成した JSON::State のインスタンスを返します。
...[ruby]{
require "json"
json_state = JSON::State.from_state(indent: "\t")
json_state.class # => JSON::Ext::Generator::State
json_state.indent # => "\t"
//}
//emlist[例 JSON::State を指定][ruby]{
require "json"
json_state = JSON::State.from_state(indent: "\t")
# JSON を出力する何らか...