国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > iOS > 正文

iOS使用AFN進行單圖和多圖上傳的實例代碼

2019-10-21 18:46:59
字體:
來源:轉載
供稿:網友

圖片上傳時必要將圖片進行壓縮,不然會上傳失敗

1.單張圖上傳

AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];  [manager POST:urlString parameters:params constructingBodyWithBlock:^(id_Nonnull formData) {//使用日期生成圖片名稱NSDateFormatter *formatter = [[NSDateFormatter alloc] init];formatter.dateFormat = @"yyyy-MM-dd HH:mm:ss";NSString *fileName = [NSString stringWithFormat:@"%@.png",[formatter stringFromDate:[NSDate date]]];[formData appendPartWithFileData:imageData name:@"uploadFile" fileName:fileName mimeType:@"image/png"];} success:^(AFHTTPRequestOperation * _Nonnull operation, id _Nonnull responseObject) {//上傳圖片成功執行回調completion(responseObject,nil);} failure:^(AFHTTPRequestOperation * _Nonnull operation, NSError * _Nonnull error) {//上傳圖片失敗執行回調completion(nil,error);}];

2.多圖上傳

多圖上傳和單圖上傳區別在于文件名稱

AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];  [manager POST:urlString parameters:params constructingBodyWithBlock:^(id_Nonnull formData) {NSInteger imgCount = 0;for (NSData *imageData in imageDatas) {NSDateFormatter *formatter = [[NSDateFormatter alloc] init];formatter.dateFormat = @"yyyy-MM-dd HH:mm:ss:SSS";NSString *fileName = [NSString stringWithFormat:@"%@%@.png",[formatter stringFromDate:[NSDate date]],@(imgCount)];[formData appendPartWithFileData:imageData name:[NSString stringWithFormat:@"uploadFile%@",@(imgCount)] fileName:fileName mimeType:@"image/png"];imgCount++;}} success:^(AFHTTPRequestOperation * _Nonnull operation, id _Nonnull responseObject) {completion(responseObject,nil);} failure:^(AFHTTPRequestOperation * _Nonnull operation, NSError * _Nonnull error) {completion(nil,error);}];

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持VEVB武林網。


注:相關教程知識閱讀請移步到IOS開發頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 高邮市| 香港| 天全县| 武乡县| 漳浦县| 犍为县| 铜梁县| 延寿县| 东方市| 池州市| 宜章县| 泗洪县| 洞头县| 虞城县| 孝感市| 黔东| 永定县| 昌黎县| 甘谷县| 扎兰屯市| 双柏县| 罗定市| 嵊州市| 通许县| 西乌| 醴陵市| 米泉市| 普定县| 大同县| 鄂尔多斯市| 洛南县| 尼木县| 宁明县| 浠水县| 临夏市| 长兴县| 扎赉特旗| 东至县| 阿图什市| 盘锦市| 大庆市|