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"];
 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM