zoukankan      html  css  js  c++  java
  • AFN实现多图片上传的方法

    [[AFAppDotNetAPIClient sharedClient] POST:path parameters:dic constructingBodyWithBlock:^(id<AFMultipartFormData>  _Nonnull formData) {
            
            if (fieldArr != nil) {
                for (int i = 0; i<fieldArr.count; i++) {
                    
                    NSArray *photoArr = photoDic[fieldArr[i]];
                    
                    NSArray *cameraArr = cameraDic[fieldArr[i]];
                    
                    NSArray *voiceArr = voiceDIc[fieldArr[i]];
                    
                    NSString *ename =  enameDic[fieldArr[i]];
                    if (photoArr != nil) {
                        for (NSInteger i = 0; i<photoArr.count; i++) {
                            if ([photoArr[i] objectForKey:@"attach_id"] == nil ) {
                                NSData *imageData = [NSData dataWithContentsOfFile:[[photoArr objectAtIndex:i] objectForKey:@"path"]];
                                NSString *paramName = [NSString stringWithFormat:@"%@_%ld",[photoArr[i]objectForKey:@"ename"],(long)i];
                                NSArray *fileNameArray = [[[photoArr objectAtIndex:i] objectForKey:@"path"] componentsSeparatedByString:@"/"];
                                NSString *fileName = fileNameArray[[fileNameArray count]-1];
                                [formData appendPartWithFileData:imageData name:paramName fileName:fileName mimeType:@"image/*"];
                            }
                            
                            
                        }
                    }
    北京-Alexyeee_  16:12:02
    没写完。。。自行脑补。。

  • 相关阅读:
    Adobe Acrobat XI Pro破解版 v11.0.10中文版
    linux经典面试题
    P1540 机器翻译(STL 链表)
    P1067 多项式输出 (模拟)
    P1003 铺地毯
    [CF547C] Mike and Foam
    [CF351B] Jeff and Furik
    [CF900D] Unusual Sequences
    [CF568B] Symmetric and Transitive
    [CF893E] Counting Arrays
  • 原文地址:https://www.cnblogs.com/lidongxiao/p/5148666.html
Copyright © 2011-2022 走看看