【发布时间】:2017-04-18 06:15:02
【问题描述】:
我需要从发布请求中提取 json 响应,以便使用 Alamofire 将图像上传到服务器并通过以下代码将图像作为 multipartformdata 上传
Alamofire.upload(
.POST,
"http://www.mywebsite.com/api/index.php/profileimg",
headers: ["Authorization" : "No Auth"],
multipartFormData: { multipartFormData in
multipartFormData.appendBodyPart(data: jpegImage1, name: "image1", fileName: "img1", mimeType: "image/jpeg")
},
encodingCompletion: { encodingResult in
switch encodingResult {
case .Success(let upload, _, _):
upload.progress { bytesWritten, totalBytesWritten, totalBytesExpectedToWrite in
dispatch_async(dispatch_get_main_queue()) {
}
}
upload.validate()
upload.responseJSON { response in
print(response.1)
print(response.2)
print(response)
}
case .Failure(let encodingError):
print(encodingError)
}
}
)
当我打印响应时,我得到了
(<NSHTTPURLResponse: 0x165dc0e0> { URL: http://www.mywebsite.com/api/index.php/profileimg } { status code: 200, headers {
Connection = close;
"Content-Encoding" = gzip;
"Content-Type" = "text/html";
"Transfer-Encoding" = Identity;
Vary = "Accept-Encoding";
} }), SUCCESS: {
Path1 = "http://www.mywebsite.com/api/tmpimage/img1";
Path2 = "http://www.website.com/api/tmpimage/img2";
Result = success;
})
如何从响应中提取 Path1 和 Path2 值作为字符串?
【问题讨论】:
标签: ios swift response alamofire image-uploading