gpt4 book ai didi

json - 在 JsonSerialization 中为特定的 Json 响应转换 JSON 响应的内容

转载 作者:搜寻专家 更新时间:2023-11-01 06:14:55 24 4
gpt4 key购买 nike

JSON 响应:

{
"matches": [
{
"platformId": "EUW1",
"gameId": 3427082245,
"champion": 21,
"queue": 450,
"season": 9,
"timestamp": 1511224973899,
"role": "NONE",
"lane": "MID"
}
],
"startIndex": 0,
"endIndex": 1,
"totalGames": 136
}

序列化:

let myJsonMatchList = try JSONSerialization.jsonObject(with: content, options: JSONSerialization.ReadingOptions.mutableContainers) as! <Array<Dictionary<String,Any>>

无法将类型 __NSDictionaryM (0x10b693260) 的值转换为 NSArray (0x10b692dd8)。

问题出在 Array Dictionary String Any用 AnyObject 替换它是可行的,但它不允许我从内部访问任何东西,即除了打印原始 Json 之外。

这个序列化的正确结构是什么,因为我被卡住了?

最佳答案

JSON 是一个对象,映射到字典。该数组是从对象内部访问的匹配项。

所以试试这个..

if let myJsonMatchList = try JSONSerialization.jsonObject(with: content, options: []) as? [String: Any] {
if let arr = myJsonMatchList["matches"] as? [[String: Any]] {
print(arr)
}
}

这是在 Playground 上运行的代码

var str = "{\"matches\": [{\"platformId\": \"EUW1\",\"gameId\": 3427082245,\"champion\": 21,\"queue\": 450,\"season\": 9,\"timestamp\": 1511224973899,\"role\": \"NONE\",\"lane\": \"MID\"}],\"startIndex\": 0,\"endIndex\": 1,\"totalGames\": 136}"

var data = str.data(using: .utf8)
if let myJsonMatchList = try JSONSerialization.jsonObject(with: data!, options: []) as? [String: Any] {
if let arr = myJsonMatchList["matches"] as? [[String: Any]] {
print(arr)
}
}

关于json - 在 JsonSerialization 中为特定的 Json 响应转换 JSON 响应的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47410788/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com