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)")
}
网友评论