17

这是我的代码。但我不知道将值设置为什么。它必须手动完成,因为实际结构比这个例子稍微复杂一些。

请问有什么帮助吗?

struct Something: Decodable {
   value: [Int]

   enum CodingKeys: String, CodingKeys {
      case value
   }

   init (from decoder :Decoder) {
      let container = try decoder.container(keyedBy: CodingKeys.self)
      value = ??? // < --- what do i put here?
   }
}
4

4 回答 4

36

由于一些错误/拼写错误,您的代码无法编译。

Int解码写入数组

struct Something: Decodable {
    var value: [Int]

    enum CodingKeys: String, CodingKey {
        case value
    }

    init (from decoder :Decoder) throws {
        let container = try decoder.container(keyedBy: CodingKeys.self)
        value = try container.decode([Int].self, forKey: .value)
    }
}

但是,如果问题中的示例代码代表整个结构,则可以简化为

struct Something: Decodable {
    let value: [Int]
}

因为CodingKeys可以推断出初始化程序和 。

于 2017-07-01T04:44:52.483 回答
8

感谢 Joshua Nozzi 的提示。以下是我如何实现对 Int 数组进行解码:

let decoder = JSONDecoder()
let intArray = try? decoder.decode([Int].self, from: data)

无需手动解码。

于 2017-12-07T06:25:21.743 回答
6

斯威夫特 5.1

就我而言,这个答案非常有帮助

我有一个JSON格式:"[ "5243.1659 EOS" ]"

因此,您可以在没有密钥的情况下解码数据

struct Model: Decodable {
    let values: [Int]

    init(from decoder: Decoder) throws {
        var container = try decoder.unkeyedContainer()
        let values = try container.decode([Int].self)
        self.values = values
    }
}
let decoder = JSONDecoder()
let result = try decoder.decode(Model.self, from: data)
于 2019-11-15T21:27:05.667 回答
1

或者你可以通用:

let decoder = JSONDecoder()
let intArray:[Int] = try? decoder.decode(T.self, from: data) 
于 2019-03-15T08:30:28.687 回答