使用Alamofire上传图片的问题(以图片作为参数)

这就是我试图用Alamofire上传图片的方法。 但程序崩溃说…像'NSInvalidArgumentException', reason: '-[_SwiftTypePreservingNSNumber dataUsingEncoding:]: unrecognized selector sent to instance...我不能确切的原因。这是我如何使请求…

  for i in 1...(imageArray.count) { for img in imageArray { let url = "http://myapp.com/a/images_upload" let headers = [ "Content-Type":"application/x-www-form-urlencoded"] let imageData: Data = (UIImageJPEGRepresentation(img, 0.6) as Data?)! print(imageData) let parameters: [String: Any] = [ "access_token": commonVarForAccessToken, "seller_id": idForNewOldUser, "product_id": self.productId, "is_default": "1", "sequence": i, "image": imageData ] Alamofire.upload(multipartFormData: { (multipartFormData) in print(parameters) multipartFormData.append(imageData as Data, withName: "home-\(self.index)", fileName: "home-\(self.index)", mimeType: "image/jpeg") for (key, value) in parameters { print(key,value) multipartFormData.append((value as AnyObject).data(using: String.Encoding.utf8.rawValue)!, withName: key) } }, to:url) { (result) in switch result { case .success(let upload, _, _): upload.uploadProgress(closure: { (Progress) in //Print progress }) upload.responseJSON { response in print(response.request) // original URL request if let JSON = response.result.value { print("JSON: \(JSON)") } } case .failure(let encodingError): print(encodingError) break }}}} 

希望有人可以帮助…谢谢… 🙂

尝试使用这个代码,它为我工作。

 let para: [String: Any] Alamofire.upload(multipartFormData: {(multipartFormData) in for i in 0..<uploadImages.count{ multipartFormData.append(UIImageJPEGRepresentation(uploadImages[i], 0.3)!, withName: "image\(i)", fileName: "swift_file\(i).jpeg", mimeType: "image/jpg") } for (key, value ) in para { multipartFormData.append((value).data(using: String.Encoding.utf8)!, withName: key) } }, to: apiURL) { (result) in switch result { case .success(let upload, _,_ ): upload.uploadProgress(closure: { (progress) in UILabel().text = "\((progress.fractionCompleted * 100)) %" print (progress.fractionCompleted * 100) }) upload.responseJSON { response in guard ((response.result.value) != nil) else{ print(response.result.error!.localizedDescription) return }