post请求 上传图片到服务端

来源:互联网 发布:配电箱价格计算软件 编辑:程序博客网 时间:2024/05/21 09:42

引入afnetworking
AFHTTPRequestOperationManager初始化manager

AFHTTPRequestOperationManager *mag = [AFHTTPRequestOperationManager manager];
mag.responseSerializer = [AFHTTPResponseSerializer serializer];
NSString *url = [NSString stringWithFormat:@”%@updateImg”,K_URL];
[mag POST:url parameters:@{imageName:imageurl} constructingBodyWithBlock:^(id formData) {
[formData appendPartWithFileData:data name:@”image” fileName:@”image.png” mimeType:@”image/png”];
} success:^(AFHTTPRequestOperation *operation, id responseObject) {
NSLog(@”成功%@”,responseObject);
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
NSLog(@”失败%@”,error);
}];

0 0
原创粉丝点击