admin 发表于 2015-4-11 16:00:21

angularjs ionic中 $http.post发的数据,后台取不到

我用$http.post(url, data). 后台用PHP框架,不知道为什么总是取不到data数据。
$http.post('data.php, {
                map: menu,
                test: 'test_lwp'
}).success(function(data){



后台接收数据的方式:
<?php
$map=$_POST['map'];

$test=$_POST['test'];

echo $map.$test;
?>





admin 发表于 2015-4-11 16:03:46

$http.post 采用postJSON方式发送数据到后台, 解决办法:在php中使用 $postData=file_get_contents('php://input', true); 这样就可以获取到前端发来的数据

dewei 发表于 2015-6-29 14:18:48

最简单的方法 吧 contenttype改了就行
页: [1]
查看完整版本: angularjs ionic中 $http.post发的数据,后台取不到