gpt4 book ai didi

json - 解析 Alamofire json 响应

转载 作者:行者123 更新时间:2023-11-28 15:43:09 27 4
gpt4 key购买 nike

我正在尝试解析来自 Alamofire 的响应,但我不知道该怎么做。

这是我得到的 JSON 响应(我想解析出“结果”)这是怎么做到的?

JSON: {
result = 887957;
status = 0;
}

swift 3

if let JSON = response.result.value {
print("JSON: \(JSON)")
}

最佳答案

你只需要指定响应的类型是Dictionary,然后使用subscript with dictionary 来获取result的值。

if let dictionary = response.result.value as? [String: Int] {

let result = dictionary["result"] ?? 0
print(result)
}

关于json - 解析 Alamofire json 响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43464094/

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