代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
ObjC
】
同步访问post方式
作者:
tb_engineer
/ 发布于
2015/2/15
/
1341
/登录过程 - (IBAction)logIn:(id)sender { //1.确定地址url NSString *urlString =@"http://www.xxx.com/Api/user.php"; NSURL *url =[NSURL URLWithString:urlString]; //2.建立请求 // 1.建立请求,是要修改请求,所以要用NSMutableURLReque NSMutableURLRequest *requestion =[NSMutableURLRequest requestWithURL:url]; // 2.建立请求超时时间 [requestion setTimeoutInterval:4.0]; // 3.指定请求方法为POST方法,大小不分 [requestion setHTTPMethod:@"post"]; // 4.建立请求数据体,因为要发这个数据题传送给服务器 NSLog(@"iphone=[%@]",logIphone.text); NSLog(@"itext=[%@]",logNum.text); NSString *strinhBody =[NSString stringWithFormat:@"auth=iorgane_cup&mobile=%@&password=%@&action=check_user_login&sign=yyyyyy",logIphone.text,logNum.text]; //将生产的字符串转换成数据 NSData *body =[strinhBody dataUsingEncoding:NSUTF8StringEncoding]; //5把数据体设置给请求 [requestion setHTTPBody:body]; //登录:利用post(数据体:包含电话号码和验证码),上传服务器,然后服务器回复状态 NSURLResponse *response =nil; NSError *error=nil; NSData *data =[NSURLConnection sendSynchronousRequest:requestion returningResponse:&response error:&error]; NSLog(@"访问完成"); if(error !=nil) { NSLog(@"访问出错:%@",error.localizedDescription); return; } if (data !=nil) { NSString *string =[[NSString alloc]initWithData:data encoding:NSUTF8StringEncoding]; NSLog(@"string=[%@]",string); NSMutableDictionary *array =[NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:nil]; NSString *pathFile =[[NSBundle mainBundle]pathForResource:@"orange.plist" ofType:nil]; [array writeToFile:pathFile atomically:YES]; NSLog(@"%@",[array objectForKey:@"result"]); if (_logList ==nil) { _logList =[[NSMutableString alloc]init]; } _logList =[array objectForKey:@"result"]; NSLog(@"_logList=[%@]",_logList); if ([_logList isEqualToString:@"true"]) { NSLog(@"登录成功"); } else { NSLog(@"登录失败,请查看密码与用户名是否正确"); return; } } else { NSLog(@"没有收到任何数据"); } }
试试其它关键字
post
同语言下
.
根据生日计算星座
.
精简的实现一个内存池
.
iOS索引搜索核心代码
.
iOS 搜索框
.
文件操作
.
UIWebView 加载本地网页
.
取消导航条对视图的影响
.
利用终端显示 隐藏文件
.
更改导航条背景颜色
.
iOS 字体斜体
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
tb_engineer
贡献的其它代码
(
3
)
.
Android中模拟手势
.
同步访问post方式
.
文件传输
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3