angularJS的$http.post发送到php获取不到数据的解决办法

$http.post 采用postJSON方式发送数据到php后台接收不到数据

解决办法:

在php中使用file_get_contents('php://input',true)方法处理

<?php
  $text=file_get_contents('php://input',true);
  echo $text;
?>

猜你喜欢

转载自xiaoluode.iteye.com/blog/2280959
今日推荐