• IOS上传多张图片(ASIHTTPRequest)


        /*

         上传图片

         */

        //#define API_BASE_URL(_URL_) [NSURL URLWithString:[@"http://172.20.0.248:8080/BaiXin/mapi/" stringByAppendingString:_URL_]]

        

        ASIFormDataRequest *request=[ASIFormDataRequest requestWithURL:API_BASE_URL(@"uploadFile.do")];

        [request setPostValue:@"12345" forKey:@"RecordID"];

        [request setPostValue:@"19f4e51366bf4b42b404a4838a722fa0" forKey:@"UserID"];

        [request setTimeOutSeconds:10000];

        for (int i=0; i<[_photoView.photoMenuItems count]; i++) {

            UIImage *userHeadImage = [_photoView.photoMenuItems objectAtIndex:i];

            [request setData:UIImageJPEGRepresentation(userHeadImage,0.1)

                withFileName:[NSString stringWithFormat:@"%d.jpg",i]

              andContentType:@"image/jpeg/png"

                      forKey:[NSString stringWithFormat:@"file%d",i]];

        }

        [request setCompletionBlock:^{

            SBJsonParser *paser=[[SBJsonParser alloc]init];

            NSDictionary *rootDic=[paser objectWithString:request.responseString ];

            NSLog(@"上传成功%@",rootDic);

        }];

        [request setFailedBlock:^{

            NSLog(@"上传失败");

        }];

        [request startAsynchronous];

  • 相关阅读:
    稀疏数组
    队列
    链表

    递归
    排序
    查找
    postman设置环境变量
    postman获取全局
    iframe页面刷新问题
  • 原文地址:https://www.cnblogs.com/xumei/p/3939889.html
Copyright © 2020-2023  润新知