JSON 문자열을 Dictionary로 변환
JSONSerialization.jsonObject(with: data, options: []) as? [String: Any]
정도로 할 수 있으므로, 의외로 간단했습니다.변환에 실패했을 때에 에러가 던져지므로, 이용할 때는 적절하게 핸들링하도록 합시다.
let json = "{\"fuga\":\"aiueo\",\"foo\":999,\"user\":{\"name\":\"tenten0213\",\"age\":30}}"
let data = json.data(using: .utf8)!
do {
let dic = try JSONSerialization.jsonObject(with: data, options: []) as? [String: Any] // ["fuga": "aiueo", "user": ["name": "tenten0213", "age": 30], "foo": 999]
dic?["fuga"] // "aiueo"
let user = dic?["user"] as? [String: Any] // ["name": "tenten0213", "age": 30]
user?["name"] as? String // "tenten0213"
user?["age"] as? Int // 30
} catch {
print(error.localizedDescription)
}
… 실은,
Reference
이 문제에 관하여(JSON 문자열을 Dictionary로 변환), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/tenten0213/items/707b1bf2cffb8d3a9700텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)