gpt4 book ai didi

swift - Alamofire Swift 2.0 json 响应

转载 作者:行者123 更新时间:2023-11-30 14:00:39 25 4
gpt4 key购买 nike

我不断收到此错误:

 '(_, _, _, _) -> Void' is not convertible to 'Response<AnyObject, NSError> -> Void'

我查看了很多地方,并尝试了更改,但它在其他地方给了我错误。

    Alamofire.request(.GET, "http://example.com/test.php", parameters: ["username": usernamep]).responseJSON { (request, response, json, error) in
if (json != nil) {
var jsonObj = JSON(json!)
if let data = jsonObj["flist"].arrayValue as [JSON]?{
datasMentions = data
....
}
}

最佳答案

经过几次尝试,我明白了。

    Alamofire.request(.GET,"http://example.com/test.php", parameters: ["username": usernamep])
.responseJSON { response in

if let json = response.result.value {
var jsonObj = JSON(json!)
if let data = jsonObj["flist"].arrayValue as [JSON]?{
datasMentions = data
....
}
}
}

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

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