Siesta JSON响应

时间:2019-01-09 21:03:39

标签: ios json swift siesta-swift

我已经设置了一个提供JSON响应的API,如下所示:

{
                "key1": "success",
                "key2": {
                    "int_val": 5,
                    "str_val": "email",
                }
}

我已经读过this,但仍然不明白如何正确访问key1。我试图通过[String : Any]解码转换器中的数据,这引发了模棱两可的类型错误:“表达式的类型不明确”。

那么如何在下面的代码中读取Siesta的响应?

service.resource("").request(.post, json: userJSON).onSuccess{ entity in
        guard let data = entity.content as? Data else {
            return
        }
        print(data)
    }

3 个答案:

答案 0 :(得分:1)

您可以尝试Decodable

struct Root:Decodable ( 
  let key1:String
  let key2:InnerItem
}

struct InnerItem:Decodable { 
  let intVal:Int
  let strVal:String
}

do {
    let decoder =  JSONDecoder() 
    decoder.keyDecodingStrategy = .convertFromSnakeCase
    let res = decoder.decode(Root.self,from:data)
    print(res.key1) 
}
catch {

    print(error)
 }

答案 1 :(得分:0)

Data 对象解析为表示您的JSON响应的 Dictionary

let json = try JSONSerialization.jsonObject(with: data!, options: []) as? [String : Any]

if let key1 = json["key1"] as? String {
    print(key1)
}

答案 2 :(得分:0)

sample project included with Siestalots of example of configuring JSON decoding to models。例如,如果您使用@Sh_Khan的答案中的RootInnerItem类型:

let decoder = JSONDecoder() 
decoder.keyDecodingStrategy = .convertFromSnakeCase

service.configureTransformer(“/somepath") {
    try jsonDecoder.decode([Root].self, from: $0.content)
}

与其他答案的重要区别是使用service.configureTransformer。无需每次都使用响应解析,而是配置转换器意味着仅一次进行解析,每个人都可以看到解析结果-每个onSuccess,每个查看{{1 }}等