php - AFNetworking post到后端,数据怎么调用
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | <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 {
}
},
failure: { (operation: AFHTTPRequestOperation!,
error: NSError!) in
print ( "获取数据出错=%@" ,error);
})
</code>
|
后台用php 拿到的$_POST 数据为
1 | <code>a:1:{s:4: "data" ;s:5: "22222" ;}</code>
|
试着对$_Post unserialize,可是得不到数据,,
file_get_contents('php://input') 得到的的数据是
1 | <code>s:10: "data=22222" ;</code>
|
请问PHP 改怎么处理AFNetworking post过来的数据?
伊谢尔伦2903 Tage vor573