php如何從Angular post請求中獲取值?Php從Angular post獲取數據
PHP
$data = $_GET['params'] or $_REQUEST['params'];
echo $data;
角
var params = {
"key":"value"
}
$http.get('php-page.php', {params:params})
.then(function(response){
var mydata = response.data;
return $scope.myresponse = mydata;
});
所有發佈採購信息可以在PHP中通過'$ _ POST [ 'your_item']'來獲得。 –