swift中的JSON和CoDable

2020-11-06  本文已影响0人  梁森的简书
[图片上传中...(0.遵守Codable.jpg-967a54-1604655420534-0)] 0.遵守Codable.jpg

1.所有的自定义成员都实现Codable, 像String、Int、Double是默认地实现了Codable的
2.如果JSON中的key和类型中变量不一致,需要声明CodingKeys枚举

使用

let data = jsonString.data(using: .utf8)! 
do {
let obj = try JSONDecoder().decode(Obj.self, from: data)
 let value = obj.menu.popup.menuItem[0].value 
print(value) 
} 
catch { 
print("出错啦:\(error)") 
}

demo地址:https://github.com/yangguanghei/codable-demo

上一篇下一篇

猜你喜欢

热点阅读