首頁  >  文章  >  後端開發  >  angularJS的$http.post送到php取得不到資料的解決辦法

angularJS的$http.post送到php取得不到資料的解決辦法

巴扎黑
巴扎黑原創
2016-11-09 13:22:201011瀏覽

$http.post 採用postJSON方式發送資料到php後台接收不到資料

解決方法:

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

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


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn