angularjs php 表单提交数据,javascript – 通过AngularJS提交的PHP $_GET数据
我一直在寻找相当多的东西,只能找到$http.post()的例子.我的问题是:
我通过AngularJS使用$http.get提交数据但是当我输出发送到我的PHP文件的数据时,它会持续出现NULL.每当我使用$http.post()时,事情都会相应地起作用.我究竟做错了什么.
PS – Noob到Angular
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
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();
采取疯狂的猜测,但假设它与“php://输入”有关,但我不知道实际在做什么 – 只是从另一个Stack帖子复制/粘贴.
谢谢
最佳答案 对于get请求,您将使用超级全局$_GET来检索发送的数据
echo json_encode($_GET); die();
本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!