首页 > 代码库 > 苹果原生请求封装
苹果原生请求封装
+(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; }
苹果原生请求封装
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。