如何使用ios,swift3,Alamofire 4中的多部分表单数据将图像作为参数上传,其他参数

时间:2017-01-10 05:38:47

标签: ios swift3 alamofire multipartform-data

我正在使用Alamofire 4 with swift 3来更新用户个人资料。我也在使用Router课程。我需要的是uplaod和其他参数的图像。我可以update用户详细说明,而无需上传图片部分。

这就是postman

中的样子

enter image description here

因此可以为此创建一个urlconvertible请求。如何使用其他参数上传图像。 (这在邮递员中很好用)。如何使用新的Alamofire执行此操作。我尝试过如下。

let parameters = [
            "profile_image": "swift_file.jpeg"
        ]


        Alamofire.upload(multipartFormData: { (multipartFormData) in
            multipartFormData.append(UIImageJPEGRepresentation(profileImage, 1)!, withName: "file", fileName: "swift_file.jpeg", mimeType: "image/png")
            for (key, value) in parameters {
                multipartFormData.append(value.data(using: String.Encoding.utf8)!, withName: key)
            }
        }, to:urltoUpdate)
        { (result) in
            switch result {
            case .success(let upload, _, _):
                print("the status code is :")

                upload.uploadProgress(closure: { (progress) in
                    print("something")
                })

                upload.responseJSON { response in
                    print("the resopnse code is : \(response.response?.statusCode)")
                    print("the response is : \(response)")
                }
              break
            case .failure(let encodingError):
                print("the error is  : \(encodingError.localizedDescription)")
                break
            }
        }

但这不能正常工作。希望你对这部分有所帮助。

2 个答案:

答案 0 :(得分:6)

你不需要这个:

"profile_image": "swift_file.jpeg"

参数应为:

let parameters = [
    "firstname": "Bill",
    "surname": "fox",
    //...rest of the parameters
]

这是withName: "file"

multipartFormData.append(UIImageJPEGRepresentation(profileImage, 1)!, withName: "file", fileName: "swift_file.jpeg", mimeType: "image/png")

应为withName: "profile_image"

multipartFormData.append(UIImageJPEGRepresentation(profileImage, 1)!, withName: "profile_image", fileName: "swift_file.jpeg", mimeType: "image/png")

带标题的代码:

let parameters = [
    "firstname": "Bill",
    "surname": "fox",
    //...rest of the parameters
]

let headers = [
    "somekey": "somevalue",
    //...rest of the parameters
]

Alamofire.upload(multipartFormData: { (multipartFormData) in

    multipartFormData.append(UIImageJPEGRepresentation(profileImage, 1)!, withName: "profile_image", fileName: "swift_file.jpeg", mimeType: "image/png")

    for (key, value) in parameters {
        multipartFormData.append(value.data(using: String.Encoding.utf8)!, withName: key)
    }

}, usingThreshold:UInt64.init(),
   to: "", //URL Here
   method: .post,
   headers: headers, //pass header dictionary here
   encodingCompletion: { (result) in

    switch result {
    case .success(let upload, _, _):
        print("the status code is :")

        upload.uploadProgress(closure: { (progress) in
            print("something")
        })

        upload.responseJSON { response in
            print("the resopnse code is : \(response.response?.statusCode)")
            print("the response is : \(response)")
        }
        break
    case .failure(let encodingError):
        print("the error is  : \(encodingError.localizedDescription)")
        break
    }
})

答案 1 :(得分:0)

将此方法放在NSObjecte文件中。

导入Alamofire`

class func postImageToUrl(_ serverlink:String,methodname:String,param:NSDictionary,image:UIImage!,withImageName : String,CompletionHandler:@escaping (Bool,NSDictionary) -> ()) {



        print("POST : " + serverlink + methodname + " and Param \(param) ")

        var fullLink = serverlink

        if fullLink.characters.count > 0 {

            fullLink = serverlink + "/" + methodname
        }
        else {

            fullLink = methodname
        }

        var imgData = Data()
        if image != nil {

            imgData = UIImageJPEGRepresentation(image!, 1.0)!
        }

        let notallowchar : CharacterSet = CharacterSet(charactersIn: "01234").inverted
        let dateStr:String = "\(Date())"
        let resultStr:String = (dateStr.components(separatedBy: notallowchar) as NSArray).componentsJoined(by: "")
        let imagefilename = resultStr + ".jpg"

        Alamofire.upload(multipartFormData:{ multipartFormData in
            multipartFormData.append(imgData, withName: withImageName as String, fileName: imagefilename, mimeType: "image/jpeg")

            for (key, value) in param {

                //let data = (value as! String).data(using: String.Encoding.utf8)!
                let data = (value as AnyObject).data(using: String.Encoding.utf8.rawValue)
                multipartFormData.append(data!, withName: key as! String)

            }
        },
        usingThreshold:UInt64.init(),
        to:fullLink,
        method:.post,
        headers:[:],
        encodingCompletion: { encodingResult in

            switch encodingResult {

                case .success(let upload, _, _):

                upload.uploadProgress { progress in // main queue by default

                    print("Upload Progress: \(progress.fractionCompleted)")
                }

                upload.responseJSON { response in

                    print(response)


                    if let TempresponseDict:NSDictionary = response.result.value as? NSDictionary {

                        if (TempresponseDict.object(forKey: "response") as? String)?.caseInsensitiveCompare("success") == .orderedSame {

                            CompletionHandler(true, TempresponseDict)
                        }
                        else {

                            var statusCode = response.response?.statusCode

                            if let error = response.result.error as? AFError {

                                statusCode = error._code // statusCode private

                                switch error {

                                case .invalidURL(let url):
                                    print("Invalid URL: \(url) - \(error.localizedDescription)")
                                case .parameterEncodingFailed(let reason):
                                    print("Parameter encoding failed: \(error.localizedDescription)")
                                    print("Failure Reason: \(reason)")
                                case .multipartEncodingFailed(let reason):
                                    print("Multipart encoding failed: \(error.localizedDescription)")
                                    print("Failure Reason: \(reason)")
                                case .responseValidationFailed(let reason):
                                    print("Response validation failed: \(error.localizedDescription)")
                                    print("Failure Reason: \(reason)")

                                    switch reason {

                                    case .dataFileNil, .dataFileReadFailed:
                                        print("Downloaded file could not be read")
                                    case .missingContentType(let acceptableContentTypes):
                                        print("Content Type Missing: \(acceptableContentTypes)")
                                    case .unacceptableContentType(let acceptableContentTypes, let responseContentType):
                                        print("Response content type: \(responseContentType) was unacceptable: \(acceptableContentTypes)")
                                    case .unacceptableStatusCode(let code):
                                        print("Response status code was unacceptable: \(code)")
                                        statusCode = code
                                    }
                                case .responseSerializationFailed(let reason):

                                    print("Response serialization failed: \(error.localizedDescription)")
                                    print("Failure Reason: \(reason)")
                                    // statusCode = 3840 ???? maybe..
                                }

                                print("Underlying error: \(error.underlyingError)")
                            }
                            else if let error = response.result.error as? URLError {

                                print("URLError occurred: \(error)")
                            }
                            else {

                                print("Unknown error: \(response.result.error)")
                            }

                            print("\(statusCode)") // the status code


                            CompletionHandler(false, TempresponseDict)
                        }
                    }
                    else {

                        CompletionHandler(false, NSDictionary())
                    }
                }

                case .failure(let encodingError):

                    print(encodingError)

                    CompletionHandler(false, NSDictionary())
            }
        })

}

<强> 2。使用

yourNSObjectClassName.postImageToUrl(MAIN_LINK, methodname: "MethodName", param: "ParametterInDictionary", image: "UploadImage", withImageName: "ImageParametterString") { (Success, responceOBJ) in
        if Success == true
        {
            print("Your image is uploaded")
        }
        else
        {
            print("Fail")
        }
    }

并且您将webservice的错误代码设置为服务器站点以显示错误并在您获得正确的成功后。