gpt4 book ai didi

swift - Alamofire 请求出现错误 'Extra Argument in call'

转载 作者:行者123 更新时间:2023-11-30 12:40:28 25 4
gpt4 key购买 nike

我搜索了很多与我想要的问题类似的问题,但找不到答案。我的语法与其他答案不同,无法弄清楚。我已迁移到 Swift 3,并将 Alamofire cocopod 更新到 4.3 后,出现错误:

Extra Argument in call

这是我获取的代码:

request = Alamofire.request(.GET, post.imageURL!).validate(contentType: ["image/*"]).response(completionHandler: { (request, response, data, err) in

有人可以告诉我新的代码吗?

最佳答案

最终的答案是这样的:

request = Alamofire.request(post.profileImage!).validate(contentType: ["image/*"])
.response { response in

if response.error == nil {
let image = UIImage(data: response.data!)!

我希望这对某人有帮助。 :)

关于swift - Alamofire 请求出现错误 'Extra Argument in call',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42301525/

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