Home >Backend Development >PHP Tutorial >AFNetworking post到后端,数据怎么调用

AFNetworking post到后端,数据怎么调用

WBOY
WBOYOriginal
2016-06-06 20:12:311556browse

<code> let afn = AFHTTPRequestOperationManager()
     
        afn.POST("http://api.abc.com//index.php?s=/home/order/makeorder.html",parameters:
            ["data":"22222"], success: { (operation: AFHTTPRequestOperation!,
            responseObject: AnyObject!) in
            print("%@", operation.request.allHTTPHeaderFields);
            let data = responseObject as! NSDictionary!
            print("获取数据==%@",data)
            if data != nil {
                //   let dict: NSDictionary = (try! NSJSONSerialization.JSONObjectWithData(data!, options: .AllowFragments)) as! NSDictionary
              //  let modelTool = DictModelManager.sharedManager
              //  let data = modelTool.objectWithDictionary(data, cls: FreshHot.self) as? FreshHot
                
               // completion(data: data, error: nil)
            }
            },
                failure: { (operation: AFHTTPRequestOperation!,
                    error: NSError!) in
                    //Handle Error
                    print("获取数据出错=%@",error);
        })
</code>

后台用php 拿到的$_POST 数据为

<code>a:1:{s:4:"data";s:5:"22222";}</code>

试着对$_Post unserialize,可是得不到数据,,

file_get_contents('php://input') 得到的的数据是

<code>s:10:"data=22222";</code>

请问PHP 改怎么处理AFNetworking post过来的数据?

回复内容:

<code> let afn = AFHTTPRequestOperationManager()
     
        afn.POST("http://api.abc.com//index.php?s=/home/order/makeorder.html",parameters:
            ["data":"22222"], success: { (operation: AFHTTPRequestOperation!,
            responseObject: AnyObject!) in
            print("%@", operation.request.allHTTPHeaderFields);
            let data = responseObject as! NSDictionary!
            print("获取数据==%@",data)
            if data != nil {
                //   let dict: NSDictionary = (try! NSJSONSerialization.JSONObjectWithData(data!, options: .AllowFragments)) as! NSDictionary
              //  let modelTool = DictModelManager.sharedManager
              //  let data = modelTool.objectWithDictionary(data, cls: FreshHot.self) as? FreshHot
                
               // completion(data: data, error: nil)
            }
            },
                failure: { (operation: AFHTTPRequestOperation!,
                    error: NSError!) in
                    //Handle Error
                    print("获取数据出错=%@",error);
        })
</code>

后台用php 拿到的$_POST 数据为

<code>a:1:{s:4:"data";s:5:"22222";}</code>

试着对$_Post unserialize,可是得不到数据,,

file_get_contents('php://input') 得到的的数据是

<code>s:10:"data=22222";</code>

请问PHP 改怎么处理AFNetworking post过来的数据?

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn