博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POST
阅读量:5127 次
发布时间:2019-06-13

本文共 677 字,大约阅读时间需要 2 分钟。

    

NSURL *url = [NSURL URLWithString:@"https://www.baidu.com"];    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];    request.HTTPMethod = @"POST";   // 请求参数    NSString *bodyStr = [NSString stringWithFormat:@"username=%@&password=%@", username, password];    request.HTTPBody = [bodyStr dataUsingEncoding:NSUTF8StringEncoding];    NSData *data =[NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
NSError *error = nil;    NSDictionary *json = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableLeaves error:&error];    NSLog(@"---------------%@", json);

 

转载于:https://www.cnblogs.com/myios/p/3520409.html

你可能感兴趣的文章
HTML元素定义 ID,Class,Style的优先级
查看>>
构造者模式
查看>>
http和https的区别
查看>>
Hbuild在线云ios打包失败,提示BuildConfigure Failed 31013 App Store 图标 未找到 解决方法...
查看>>
找到树中指定id的所有父节点
查看>>
今天新开通了博客
查看>>
AS3优化性能笔记二
查看>>
ElasticSearch(站内搜索)
查看>>
4----COM:a Generative Model for group recommendation(组推荐的一种生成模型)
查看>>
UVA 11137 - Ingenuous Cubrency
查看>>
js阻止事件冒泡的两种方法
查看>>
Java异常抛出
查看>>
[SQL Server 系] T-SQL数据库的创建与修改
查看>>
74HC164应用
查看>>
变量声明和定义的关系
查看>>
Wpf 之Canvas介绍
查看>>
linux history
查看>>
jQuery on(),live(),trigger()
查看>>
Python2.7 urlparse
查看>>
sencha touch在华为emotion ui 2.0自带浏览器中圆角溢出的bug
查看>>