36件ヒット
[1-36件を表示]
(0.017秒)
種類
- インスタンスメソッド (24)
- クラス (12)
ライブラリ
- json (36)
クラス
-
JSON
:: State (24)
キーワード
-
max
_ nesting (12) -
max
_ nesting= (12)
検索結果
-
JSON
:: NestingError (24000.0) -
パースしようとしているデータ構造のネストが深すぎる場合に発生する例外です。
パースしようとしているデータ構造のネストが深すぎる場合に発生する例外です。 -
JSON
:: State # max _ nesting -> Integer (6106.0) -
生成される JSON 形式の文字列のネストの深さの最大値を返します。
...ax_nesting: 2)
json_state.max_nesting # => 2
JSON.generate([[]], json_state)
JSON.generate([[[]]], json_state) # => JSON::NestingError
//}
//emlist[例 ネストの深さチェックを行わない][ruby]{
require "json"
json_state = JSON::State.new(max_nesting: 0)
json_state.max_nestin... -
JSON
:: State # max _ nesting=(depth) (6106.0) -
生成される JSON 形式の文字列のネストの深さの最大値をセットします。
...せん。
//emlist[例][ruby]{
require "json"
json_state = JSON::State.new(max_nesting: 2)
json_state.max_nesting # => 2
JSON.generate([[]], json_state)
json_state.max_nesting = 3
json_state.max_nesting # => 3
JSON.generate([[[[]]]], json_state) # => JSON::NestingError
//}...