多部分请求 - 使用 UIImage 的可编码结构



使用 Swift 5,我试图削减很多依赖项(Alamofire(,并且我试图了解如何在使用 Codable 和 URLRequest 时执行多部分请求

我的代码可以正常工作,以创建具有名称和电子邮件的用户,但我需要向结构添加头像。

添加头像后,如何对结构进行编码以成为多部分请求。 我在网上找到了一些解决方案,但不适用于我尝试实现的场景。

下面的代码是没有头像的请求的工作代码。

struct User: Codable {
let name: String
let email: String?
}
var endpointRequest = URLRequest(url: endpointUrl)
endpointRequest.httpMethod = "POST"
endpointRequest.addValue("application/json", forHTTPHeaderField: "Content-Type")
do {
endpointRequest.httpBody = try JSONEncoder().encode(data)
} catch {
onError(nil, error)
return
}

URLSession.shared.dataTask(
with: endpointRequest,
completionHandler: { (data, urlResponse, error) in
DispatchQueue.main.async {
self.processResponse(data, urlResponse, error, onSuccess: onSuccess, onError: onError)
}
}).resume()
UIImage

不符合Codable但您可以对pngData表示形式进行编码。但是,这需要实现Codable方法

struct User: Codable {
let name: String
let email: String?
var avatar : UIImage?
private enum CodingKeys : String, CodingKey { case name, email, avatar }
init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
name = try container.decode(String.self, forKey: .name)
email = try container.decodeIfPresent(String.self, forKey: .email)
if let avatarData = try? container.decode(Data.self, forKey: .avatar) {
avatar = UIImage(data: avatarData)
}
}
func encode(to encoder: Encoder) throws {
var container = encoder.container(keyedBy: CodingKeys.self)
try container.encode(name, forKey: .name)
try container.encode(email, forKey: .email)
if let avatarImage = avatar {
try container.encode(avatarImage.pngData(), forKey: .avatar)
}
}
}

或者将avatar声明为 URL 并单独发送图像

相关内容

  • 没有找到相关文章

最新更新