gpt4 book ai didi

Swift 3 Alamofire 请求进度

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

我有这种代码

let req = Alamofire.request(url, method: .post, parameters: parameters, encoding: JSONEncoding.default, headers: headers)
req.downloadProgress { (progress) in
print("progess!", Float(req.progress.fractionCompleted))
}

req.responseJSON { response in
if response.result.isSuccess {
print(response.result.value!)
}
else {
print(response.result.error!)
}
}

结果并没有给我带来进步。它只返回 1.0,仅此而已,但我需要此请求的进度。

请有人帮助我。

最佳答案

你在使用 req.progress.fractionCompleted 时犯了一个错误。使用 progress.fractionCompleted 代替。

let req = Alamofire.request(url, method: .post, parameters: parameters, encoding: JSONEncoding.default, headers: headers)
req.downloadProgress { (progress) in
print("progess!", Float(progress.fractionCompleted))
}

req.responseJSON { response in
if response.result.isSuccess {
print(response.result.value!)
}
else {
print(response.result.error!)
}
}

关于Swift 3 Alamofire 请求进度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52202289/

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