0

传递标头和参数时:Alamofire.AFError.URLRequestValidationFailureReason.bodyDataInGETRequest(0 bytes)

 AF.request(urlString,method:.get, parameters: parameters, encoding: URLEncoding.httpBody, headers: headers).responseJSON { response in

              print(response)

 }
4

1 回答 1

1

从 Apple 的 2019 操作系统版本开始,尝试使用正文数据发出 GET 请求将失败并出现错误。值必须是nil。Alamofire 在这里提供了它自己的错误,以便为 Alamofire 用户提供一致的体验,无论他们的代码在哪个操作系统上运行。

于 2020-04-09T20:10:48.910 回答