我一直在搜索很多,只能找到$ http.post()示例。我的问题是:
我通过AngularJS使用$ http.get提交数据但是当我输出发送到我的PHP文件的数据时,它会持续出现NULL。每当我使用$ http.post()时,事情都会相应地起作用。我做错了什么。
PS - Noob to Angular
角
(function ()
{
var app = angular.module('app', ['ngRoute']);
app.config(function($routeProvider){
$routeProvider
.when('/players', {
templateUrl: 'partials/players.html',
controller: 'PlayersController'
})
.otherwise({
redirectTo: 'index.html'
});
});
app.controller('PlayersController', ['$scope', '$http', function ($scope, $http)
{
$http
.get('executer.php', {
params: {
league: "NFL",
team: "Ravens"
}
})
.success(function(response)
{
console.log(response);
})
.error(function()
{
console.log("error");
});
}
]);
})
();
PHP
<?php
require_once($_SERVER['DOCUMENT_ROOT'].'/php/Class/Database.php');
require_once($_SERVER['DOCUMENT_ROOT'].'/php/Class/Search.php');
$data = json_decode(file_get_contents("php://input"));
echo json_encode($data); die();
采取疯狂的猜测,但假设它与&#34; php://输入&#34;有关,但我不知道实际在做什么 - 只是从另一个Stack帖子中复制/粘贴。
由于
答案 0 :(得分:2)
对于获取请求,您使用超级全局$_GET
来检索已发送的数据
echo json_encode($_GET); die();