request请求 HTTPBody 格式

Posted 有棱角的圆

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了request请求 HTTPBody 格式相关的知识,希望对你有一定的参考价值。

//Json格式
 
    [mtbRequset setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
    NSError *error;
    NSData *body = [NSJSONSerialization dataWithJSONObject:bodyDict options:NSJSONWritingPrettyPrinted error:&error];
    if (error) {
        MBErrorLog(@"%@", error);
    }
    mtbRequset.HTTPBody = body;
 
 
//x-www-form-urlencoded格式
    NSString *bodyStr = @"type=shentong&postid=3333557693903";
    mutablerequest.HTTPBody = [bodyStr dataUsingEncoding:NSUTF8StringEncoding];
    [mutablerequest setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
 

以上是关于request请求 HTTPBody 格式的主要内容,如果未能解决你的问题,请参考以下文章

AFNetworking3.2.1 Post请求通过httpbody传参

在 AFNetworking 中,httpbody 和参数发布请求之间的区别?

Django基础03

请求库之requests

Django序列化

request请求模拟导出文件