24件ヒット
[1-24件を表示]
(0.015秒)
別のキーワード
ライブラリ
- json (24)
キーワード
-
to
_ json (12) -
to
_ json _ raw _ object (12)
検索結果
先頭2件
-
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... -
JSON
:: Generator :: GeneratorMethods :: String # to _ json _ raw _ object -> Hash (7.0) -
生の文字列を格納したハッシュを生成します。
...成します。
このメソッドは UTF-8 の文字列ではなく生の文字列を JSON に変換する場合に使用してください。
require 'json'
"にほんご".encode("euc-jp").to_json_raw_object
# => {"json_class"=>"String", "raw"=>[164, 203, 164, 219, 164, 243, 164, 180]}
"...