12件ヒット
[1-12件を表示]
(0.089秒)
別のキーワード
ライブラリ
- json (12)
クラス
-
JSON
:: State (12)
検索結果
-
JSON
:: State # object _ nl -> String (24338.0) -
JSON 形式の文字列中に現れる JavaScript のオブジェクトの行末に挿入する文字列を返します。
...list[例][ruby]{
require "json"
json_state = JSON::State.new(object_nl: "")
json_state.object_nl # => ""
puts JSON.generate([1, 2, { name: "tanaka", age: 19 }], json_state)
# => [1,2,{"name":"tanaka","age":19}]
json_state = JSON::State.new(object_nl: "\n")
json_state.object_nl...