带有多维和多类型数组的 Swift 4 JSON 可解码

Ala*_*noh 2 arrays json multidimensional-array swift4 decodable

{
"values":[
[1,1,7,"Azuan Child","Anak Azuan","12345","ACTIVE","Morning",7,12,"2017-11-09 19:45:00"],
[28,1,0,"Azuan Child2","Amran","123456","ACTIVE","Evening",1,29,"2017-11-09 19:45:00"]
]
}
Run Code Online (Sandbox Code Playgroud)

好的,这是我从服务器收到的 json 格式

现在我想将它解码到我的结构中,但仍然没有运气。

struct ChildrenTable: Decodable {
    var values: [[String]]?
}
Run Code Online (Sandbox Code Playgroud)

我在 URLSession 上的调用者方法看起来像这样

URLSession.shared.dataTask(with: request) { (data, response, err) in
        guard let data = data else { return }

        let dataAsString = String(data: data, encoding: .utf8)
        print(dataAsString)

        do {
            let children  = try
                JSONDecoder().decode(ChildrenTable.self, from: data)
                print (children)
        } catch let jsonErr {
            print ("Error serializing json: ", jsonErr)
        }
    }.resume()
Run Code Online (Sandbox Code Playgroud)

我得到的错误是

Error serializing json:  
typeMismatch(Swift.String, Swift.DecodingError.Context(codingPath: [Vito_Parent.ChildrenTable.(CodingKeys in _1B826CD7D9609504747BED0EC0B7D3B5).values, Foundation.(_JSONKey in _12768CA107A31EF2DCE034FD75B541C9)(stringValue: "Index 0", intValue: Optional(0)), 
Foundation.(_JSONKey in _12768CA107A31EF2DCE034FD75B541C9)(stringValue: "Index 0", intValue: Optional(0))], 
debugDescription: "Expected to decode String but found a number instead.", underlyingError: nil))
Run Code Online (Sandbox Code Playgroud)

我知道数组中有一个 int 并且我只为这些值转换var values: [[String]]?了String (这个错误弹出的原因),但我根本不能在我的结构中使用任何多维数组或元组,因为它遵循可解码的协议。

我也无法将数据转换为字典,因为它会抛出错误“预期解码字典但找到数组”

关于解决这个问题的任何想法?我尝试在数据上投射字符串类型,但仍然没有运气...

p/s:如果所有的json格式都是字符串类型,就没有问题,但是我没有更改它的权限,因为我是从API调用的。

Ork*_*nov 5

正如您所说,您的 json 数组是多类型的,但您正试图将所有内容解码为String. Stringto 的默认一致性Decodable不允许这样做。我想到的唯一解决方案是引入新类型。

struct IntegerOrString: Decodable {
    var value: Any

    init(from decoder: Decoder) throws {
        if let int = try? Int(from: decoder) {
            value = int
            return
        }

        value = try String(from: decoder)
    }
}

struct ChildrenTable: Decodable {
    var values: [[IntegerOrString]]?
}
Run Code Online (Sandbox Code Playgroud)

在线运行