【发布时间】:2018-08-06 18:43:12
【问题描述】:
我有一个 JSON 文件,我正在尝试解码,但收到一条错误消息:
typeMismatch(Swift.Dictionary, Swift.DecodingError.Context(codingPath: [_JSONKey(stringValue: "Index 0", intValue: 0)], debugDescription: "期望解码 Dictionary 但找到了一个数组。", 底层错误:无))
我的代码如下:
struct Phrase: Decodable {
let sentences: [String]
}
func getFromJSON() {
do {
let jsonURL = Bundle.main.url(forResource: "script", withExtension: "json")
let jsonDecoder = JSONDecoder()
let jsonData = try Data(contentsOf: jsonURL!)
let jsonSentence = try jsonDecoder.decode([Phrase].self, from: jsonData)
debugPrint(jsonSentence)
} catch {
print(error)
}
}
我一直在查看许多其他堆栈溢出问题,我注意到这些 JSON 文件的格式与我的不同。它们被格式化为字典,而我的是这样的-
[
["bin blue", "with A 2 soon"],
["set blue", "in A 9 soon"],
["lay blue", "at A 3 please"],
["3 5 zero zero 5 8"],
["place blue", "by A 6 now"],
["lay green", "at B ZERO now"],
["8 9 1 5 4 zero"]
]
我知道解码器正在寻找字典,但我如何让它解码数组呢?
【问题讨论】: