Developeサイトからコード引用します。
JSONDecoder
swift
1struct GroceryProduct: Codable { 2 var name: String 3 var points: Int 4 var description: String? 5} 6 7let json = """ 8{ 9 "name": "Durian", 10 "points": 600, 11 "description": "A fruit with a distinctive scent." 12} 13""".data(using: .utf8)! 14 15let decoder = JSONDecoder() 16let product = try decoder.decode(GroceryProduct.self, from: json) 17 18print(product.name) // Prints "Durian" 19print(json) //99 bytes
print(json)
について
自分の環境ではデータ要領しか表示できないのですが他のかたの環境だとjsonの内容が読めるように出力されます。
どのようにするとjsonの中身をprintで表示できますか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/28 03:09