ASI进行POST网络请求

Posted 小敏的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ASI进行POST网络请求相关的知识,希望对你有一定的参考价值。

第一步,导入文件

 //ASI进行GET数据请求 需要导入的头文件是 ASIHTTPRequest.h

//ASI进行POST数据请求  需要导入的头文件是 ASIFormDataRequest.h

//都要遵守的协议是 ASIHTTPRequestDelegate

第二步,请求

<1>将字符串转成NSURL

    NSURL * url = [NSURL URLWithString:PATH];

 <2>封装请求对象

 GET请求封装的请求对象是ASIHTTPRequest

 POST请求封装的请求对象是ASIFormDataRequest

ASIFormDataRequest * request = [ASIFormDataRequest requestWithURL:url];

 <3>设置代理

    request.delegate =self;

 <4>拼接接口

    UITextField * tf = (UITextField *)[self.view viewWithTag:100];

    [request addPostValue:tf.text forKey:@"chgmobile"];

<5>开始异步请求

    [request startAsynchronous];

第三步,实现代理协议

-(void)requestFinished:(ASIHTTPRequest *) request
{
    GDataXMLDocument * doc = [[GDataXMLDocument alloc] 
    initWithData:request.responseData options:0 error:nil];

    NSArray * citys = [doc nodesForXPath:@"//city" error:nil];

    GDataXMLElement * element = citys[0];

    NSLog(@"%@",element.stringValue);
  
}

 

以上是关于ASI进行POST网络请求的主要内容,如果未能解决你的问题,请参考以下文章

iOS开发网络篇—使用ASI框架进行文件下载

AFNetworking 将重定向请求从 GET 更改为 POST

asihttp 使用 POST 方法并将 nsMutabledata 发布到 uri,为啥我无法获得 asi 委托回调?

VSCode自定义代码片段14——Vue的axios网络请求封装

VSCode自定义代码片段14——Vue的axios网络请求封装

VSCode自定义代码片段14——Vue的axios网络请求封装