从 Alamofire 上传图像中提取响应消息

Extract Response message from Alamofire upload Image

我需要从 post 请求中提取 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 值作为字符串?

找到了从

的响应中获取路径 1 和路径 2 的解决方案
  upload.responseJSON { response in

                print(response.1)
                print(response.2)
                print(response)

                    let dic1 =  (response.2.value as? NSDictionary)?.objectForKey("Path1") as! String
                    print(dic1)
                    let dic2 = (response.2.value as? NSDictionary)?.objectForKey("Path1") as! String
                    print(dic2)

                }

因此可以从响应中提取路径 1 和路径 2。