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

首頁 > 系統 > iOS > 正文

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

2020-07-26 02:50:56
字體:
來源:轉載
供稿:網友

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

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);}];

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

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 绍兴市| 常德市| 唐海县| 七台河市| 浙江省| 准格尔旗| 青龙| 饶平县| 禄劝| 台前县| 高碑店市| 平江县| 年辖:市辖区| 高平市| 乌拉特前旗| 图木舒克市| 杭州市| 莎车县| 克拉玛依市| 南投县| 永平县| 富蕴县| 壤塘县| 乐陵市| 阿荣旗| 呈贡县| 邹平县| 十堰市| 南溪县| 孟村| 桃园县| 察哈| 前郭尔| 堆龙德庆县| 闵行区| 石景山区| 平乡县| 金堂县| 唐海县| 英山县| 西平县|