php-angularjs $http.post传值给本地PHP服务器,服务器应该怎么接收数据?
程序员文章站
2022-04-26 14:07:20
...
phpangularjs
比如:
$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服务器应该怎么接收这个数据?(我用的appserv)