如何在JsonSerialization中为特定的Json响应转换JSON响应

时间:2017-11-21 10:28:07

标签: json swift json-serialization

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。

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

1 个答案:

答案 0 :(得分:4)

JSON是一个映射到Dictionary的对象。数组是从对象内访问的匹配项。

所以试试这个..

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

以下是在游乐场工作的代码

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)
    }
}