当我通过方法发布将数据发送到php文件时遇到麻烦,这是一个例子:
function SimuladorService ( $http, config ) {
$http.defaults.headers.post["Content-Type"] = "application/x-www-form-urlencoded; charset=UTF-8;";
$http.defaults.headers.post["Accept"] = "application/x-www-form-urlencoded";
const post = function(dados) {
return $http({
method: 'POST',
url: "example.php",
data: {
nome:'almir',
sobrenome: 'teste'
},
transformRequest : function(obj) {
var str = [];
for(var p in obj)
str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p]));
return str.join("&");
},
})
}}
example.php
<?php
echo json_encode($_POST);
它不返回我的$ _POST数据。
答案 0 :(得分:-1)
如果问题出在角度问题上,请尝试该代码:
$scope.post = function(dados){
console.log(dados)
$http({
method: 'POST',
url: "example.php",
data: {
nome:'almir',
sobrenome: 'teste'
},
withCredentials: true,
headers: {'Content-Type': 'application/x-www-form-urlencoded'},
})
.then(function successCallback(data) {
console.log(data)
}, function errorCallback(response) {
console.log(response);
});
}
html:<button ng-click="post('dados')">click</button>
如果问题仍然存在,请检查您在console.log
中得到的内容,然后有可能找到原因
答案 1 :(得分:-1)
要将数据发布到PHP API,只需使用默认值:
var data = {
nome:'almir',
sobrenome: 'teste'
};
function post(data) {
var url = "example.php";
return $http.post(url,data);
}
post(data).then(function(response) {
console.log(response.data)
$scope.data = response.data;
}).catch(function(response) {
console.log(response);
throw response;
})
在PHP服务器端:
<?php
$data = json_decode(file_get_contents('php://input'), true);
echo file_get_contents('php://input');
对于AngularJS框架,默认设置是使用JSON数据。最好避免使用经过网址编码的数据。