php-PHP怎么获取获取angularjs http.post
程序员文章站
2022-06-12 21:46:20
...
http.postphppostangularjs
前端:$http({
method: 'POST',
url: "http://127.0.0.1:8080/school/studentadd.php",
data : newnames,
headers : {'Content-Type': 'application/x-www-form-urlencoded' }
}).success(function(){
console.log('success');
}).error(function(){
alert("error");
});
PHP接收:echo file_get_contents('php://input'); 没显示任何数据
这是什么原因,没获取到数据吗?