gpt4 book ai didi

ios - 如何使用 Alamofire 和 session 管理器附加 MultipartFormData 以及其他发布参数?

转载 作者:行者123 更新时间:2023-11-29 06:00:50 25 4
gpt4 key购买 nike

目前我使用:

func post(_ url: URL, parameters: [String: Any]?, image: UIImage?, headers: [String: String]?, success: @escaping SuccessHandler, failure: @escaping ErrorHandler) {
manager.request(url, method: .post, parameters: parameters, encoding: URLEncoding.default, headers: headers).responseJSON { [weak self] response in
//do something with a response
}
}

如何将图像附加到请求中?

最佳答案

这是我的回答

 Alamofire.upload(multipartFormData: { multipartFormData in

//Single image to pass here
if image != nil{
if let imageData = UIImageJPEGRepresentation(image!, 0.8) {
multipartFormData.append(imageData, withName: "Your key here", fileName: "\(UUID().uuidString).jpeg", mimeType: "image/jpeg")
}
}

//Here array of UIImages
if images.count != 0{
for img in images{
if let imageData = UIImageJPEGRepresentation(img, 0.8) {
multipartFormData.append(imageData, withName: "Your key here", fileName: "\(UUID().uuidString).jpeg", mimeType: "image/jpeg")
}
}
}


//params are your other post parameters
if let parm = params{
for (key, value) in parm {
multipartFormData.append((value as AnyObject).data(using: String.Encoding.utf8.rawValue)!, withName: key)
}
}


}, to: "Your url here" , method: .post, headers: headers,
encodingCompletion: { encodingResult in


switch encodingResult {
case .success(let upload, _, _):
//Success response
case .failure(let encodingError):
//Failure response

}
})

关于ios - 如何使用 Alamofire 和 session 管理器附加 MultipartFormData 以及其他发布参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54686120/

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