0
我需要在服務器上發送所有表單,首先是文本表單,然後是圖像。有人在用它嗎?在AFNetworking 2.0中使用multipart/form-data最簡單的方法是什麼? ios7
我需要在服務器上發送所有表單,首先是文本表單,然後是圖像。有人在用它嗎?在AFNetworking 2.0中使用multipart/form-data最簡單的方法是什麼? ios7
documentation page所述的AFNetworking
示出了以下示例:
多部分請求
AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];
NSDictionary *parameters = @{@"foo": @"bar"};
NSURL *filePath = [NSURL fileURLWithPath:@"file://path/to/image.png"];
[manager POST:@"http://example.com/resources.json" parameters:parameters constructingBodyWithBlock:^(id<AFMultipartFormData> formData) {
[formData appendPartWithFileURL:filePath name:@"image" error:nil];
} success:^(AFHTTPRequestOperation *operation, id responseObject) {
NSLog(@"Success: %@", responseObject);
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
NSLog(@"Error: %@", error);
}];