您的位置:首页 > 理论基础 > 计算机网络

IOS 利用ASIHttpRequest 上传多张图片

2016-09-14 14:25 579 查看
#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];
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: