我是AnuglarJS的新用户,我正在尝试发送http POST请求。请求已成功发送。但是,我无法访问服务器端的POST数据。我试图修改标题和请求数据(根据不同的文章)。似乎没有工作。这是我正在使用的,
客户端:
var user = { name: $scope.username };
$http({
method: "POST",
url: "../validation",
data: user,
}).then(function(response) {
console.log(response);
});
服务器:
$postdata = file_get_contents("php://input");
$request = json_decode($postdata);
$name = $request->name;
echo $name;
任何帮助将不胜感激。 谢谢!