美文网首页
swift中的JSON和CoDable

swift中的JSON和CoDable

作者: 梁森的简书 | 来源:发表于2020-11-06 19:01 被阅读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

    相关文章

      网友评论

          本文标题:swift中的JSON和CoDable

          本文链接:https://www.haomeiwen.com/subject/rdztbktx.html