AFNetworking-发布请求 - 向正文添加简单文本

时间:2013-07-06 18:07:52

标签: ios http-post afnetworking

如何使用AFNetworking将简单字符串(无JSON或任何其他格式)添加到帖子请求中? 我已经成功的最好成绩是'='。

而且:

 NSURLRequest* request =[myServer multipartFormRequestWithMethod:@"POST" path:@"http://my.server.com" parameters:nil constructingBodyWithBlock:^(id<AFMultipartFormData> formData) {
    NSData *tmp_data = [NSString stringWithFormat:@"%@", @"my_string!"];
    [formData appendPartWithHeaders:nil body:tmp_data];
}];

提前致谢!

1 个答案:

答案 0 :(得分:8)

这很简单,这应该是答案:

NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
[request setURL:[NSURL URLWithString:@"http://www.my.server.com"]];
[request setHTTPMethod:@"POST"];

//set headers
NSString *contentType = @"text/xml";
[request addValue:contentType forHTTPHeaderField: @"Content-Type"];
[request addValue:@"any-value" forHTTPHeaderField: @"User-Agent"];

//create the body
NSMutableData *postBody = [NSMutableData data];
[postBody appendData:[@"my_body_string!" dataUsingEncoding:NSUTF8StringEncoding]];

//post  
[request setHTTPBody:postBody];

从这里开始,使用http request(我使用AFNetworking进行发送)来执行您想要的操作。

干杯!