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

<?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();
点赞