0
我想在iOS上將多個文件上傳到服務器。我有數據作爲NSData,我想上傳到服務器。我正在使用alamofire上傳數據。我已經通過他們的文件,但無法找到很好的答案。我無法理解下面的代碼如何使用NSData &多個圖像。請提供解決方案。如何使用alamofire上傳多個文件並顯示進度?
let fileURL = Bundle.main.url(forResource: "video", withExtension: "mov")
Alamofire.upload(fileURL, to: "https://httpbin.org/post")
.uploadProgress { progress in // main queue by default
print("Upload Progress: \(progress.fractionCompleted)")
}
.downloadProgress { progress in // main queue by default
print("Download Progress: \(progress.fractionCompleted)")
}
.responseJSON { response in
debugPrint(response)
}
沒有您code.Though你,我已經改進的代碼錯誤。 – Techiee
隨時編輯答案並加以改進。 @deepakkumar –
如何在上傳過程中顯示uitableviewcell中的進度條? –