苹果原生请求封装
Posted _水畔竹汐
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了苹果原生请求封装相关的知识,希望对你有一定的参考价值。
+(NSMutableURLRequest *)putRequestWithUrl:(NSString *)urlString HTTPMethod:(NSString *)httpMethod HTTPBody:(NSString *)httpBody; +(NSMutableURLRequest *)putRequestWithUrl:(NSString *)urlString HTTPMethod:(NSString *)httpMethod HTTPBody:(NSString *)httpBody { //1.创建URL NSURL *url = [NSURL URLWithString:urlString]; //2.创建NSURLRequest // 注意: 如果需要设置请求体或者其他请求参数, 必须使用NSURLRequest的子类 NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url]; //设置模式 // 注意点: 必须大写 request.HTTPMethod = httpMethod; //设置请求体 // 注意: 只要是POST请求, 系统内部会自动添加? // post发送中文没有问题 request.HTTPBody = [httpBody dataUsingEncoding:NSUTF8StringEncoding]; // 设置超时时间 request.timeoutInterval = 10; [request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Contsetent-Type"]; return request; }
以上是关于苹果原生请求封装的主要内容,如果未能解决你的问题,请参考以下文章
VSCode自定义代码片段14——Vue的axios网络请求封装
VSCode自定义代码片段14——Vue的axios网络请求封装