只是不想问我如何在编码时将我的数据从我的ajax请求检索到我的php api:
控制器:
$scope.addCustomer= function() {
IndexService.addCustomer($scope.persons)
.then(function(response) {
console.debug('response :', response);
}).catch(function(error) {
console.debug('error :', error);
});
}
服务:
function addCustomer(data) {
return $http({
method:'POST',
url: 'php/api/customer.php',
data: data,
dataType: 'json',
contentType: 'applications/json'
});
}
我试过这个到我的php文件,但它告诉我未定义索引'数据'
$data = $_POST['data']
问题:从ajax调用到php文件中检索数据的正确方法是什么?谢谢