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

posted on 2016-08-24 11:22  Andy_Capricorn  阅读(445)  评论(0编辑  收藏  举报

导航