swift4 – Swift 4使用Codable解码json

有人能告诉我我做错了什么吗?我已经看过这里的所有问题,就像从这里 How to decode a nested JSON struct with Swift Decodable protocol?一样,我发现了一个看起来正是我需要的东西 Swift 4 Codable decoding json.
{
"success": true,"message": "got the locations!","data": {
    "LocationList": [
        {
            "LociD": 1,"LocName": "Downtown"
        },{
            "LociD": 2,"LocName": "Uptown"
        },{
            "LociD": 3,"LocName": "Midtown"
        }
     ]
  }
}

struct Location: Codable {
    var data: [LocationList]
}

struct LocationList: Codable {
    var LociD: Int!
    var LocName: String!
}

class ViewController: UIViewController {

override func viewDidLoad() {
    super.viewDidLoad()

    let url = URL(string: "/getlocationlist")

    let task = URLSession.shared.dataTask(with: url!) { data,response,error in
        guard error == nil else {
            print(error!)
            return
        }
        guard let data = data else {
            print("Data is empty")
            return
        }

        do {
            let locList = try JSONDecoder().decode(Location.self,from: data)
            print(locList)
        } catch let error {
            print(error)
        }
    }

    task.resume()
}

我得到的错误是:

typeMismatch(Swift.Array,Swift.DecodingError.Context(codingPath:
[],debugDescription: “Expected to decode Array but found a
dictionary instead.”,underlyingError: nil))

检查JSON文本的概述结构:
{
    "success": true,"data": {
      ...
    }
}

“data”的值是JSON对象{…},它不是数组.
和对象的结构:

{
    "LocationList": [
      ...
    ]
}

该对象有一个单独的条目“LocationList”:[…],它的值是一个数组[…].

您可能还需要一个结构:

struct Location: Codable {
    var data: LocationData
}

struct LocationData: Codable {
    var LocationList: [LocationItem]
}

struct LocationItem: Codable {
    var LociD: Int!
    var LocName: String!
}

用于检测…

var jsonText = """
{
    "success": true,"data": {
        "LocationList": [
            {
                "LociD": 1,"LocName": "Downtown"
            },{
                "LociD": 2,"LocName": "Uptown"
            },{
                "LociD": 3,"LocName": "Midtown"
            }
        ]
    }
}
"""

let data = jsonText.data(using: .utf8)!
do {
    let locList = try JSONDecoder().decode(Location.self,from: data)
    print(locList)
} catch let error {
    print(error)
}

相关文章

软件简介:蓝湖辅助工具,减少移动端开发中控件属性的复制和粘...
现实生活中,我们听到的声音都是时间连续的,我们称为这种信...
前言最近在B站上看到一个漂亮的仙女姐姐跳舞视频,循环看了亿...
【Android App】实战项目之仿抖音的短视频分享App(附源码和...
前言这一篇博客应该是我花时间最多的一次了,从2022年1月底至...
因为我既对接过session、cookie,也对接过JWT,今年因为工作...