HTTP POST using Angular.js

2022-08-30 20:14:56

我是这个场景的新手,我想使用Angular.js来发出HTTP POST请求。我正在访问PHP脚本,其参数只是POST变量。从每个脚本返回的是一个 JSON 字符串。通常,在HTML表单中,您可以提出这样的请求,例如:

<form method="post" action="url.php">
<input name="this">
<input name="that">
<input value="Submit">
</form>

根据您的输入和单击提交后,JSON data1 将返回如下内容:{ "code" : 1 }

我无权访问脚本或托管它们的服务器。

我想知道Angular是否有可能.js读取JSON数据1,将该data1与我的JSON data2中定义的内容相匹配,然后将它们输出到我的视图()。<pre>data2</pre>

例如,如果检索到,我希望我的 JSON 输出代码 #1 的值:{ "code" : 1 }

{ "code" : [
  { 1: "User already logged in." }, 
  { 2: "Wrong parameters, try again."}, 
  { 3: "etc., etc." }
 ] 
};

这是我的尝试:

<form ng-controller="PhpCtrl" name="f1">
<input type="text" name="name">
<input type="text" name="password">
<pre ng-model="codeStatus">{{codeStatus}}</pre>
<input type="submit" ng-click="add()" value="Submit">
</form>

function PhpCtrl($scope, $http, $templateCache) {
    $scope.method = 'POST';
    $scope.url = 'url.php';
    $scope.codeStatus = "";

    $scope.add = function() {

        $http({
            method: $scope.method, 
            url: $scope.url,
            headers: {'Content-Type': 'application/x-www-form-urlencoded'},  
            cache: $templateCache
        }).
        success(function(response) {
            $scope.codeStatus = response.data;
        }).
        error(function(response) {
            $scope.codeStatus = response || "Request failed";
        });
        return false;   
    };
}

到目前为止,它发布到视图的所有内容都是“请求失败”,尽管它正在处理HTTP / 1.1 200。我知道我还有很长的路要走,但我将不胜感激。一旦我弄清楚了如何将正确的 JSON data1 发布到视图,下一步就是匹配并输出适当的 data2。提前感谢您!


答案 1

Acctuly问题是在PHP的后端,你不会像往常一样检索发布的数据,这对我有用:

function PhpCtrl($scope, $http, $templateCache) {
  var method = 'POST';
  var url = 'url.php';
  $scope.codeStatus = "";
  $scope.add = function() {
    var FormData = {
      'name' : document.f1.name.value,
      'password' : document.f1.password.value
    };
    $http({
      method: method,
      url: url,
      data: FormData,
      headers: {'Content-Type': 'application/x-www-form-urlencoded'},
      cache: $templateCache
    }).
    success(function(response) {
        $scope.codeStatus = response.data;
    }).
    error(function(response) {
        $scope.codeStatus = response || "Request failed";
    });
    return false;
  };
}

在 PHP 文件中:

$data = json_decode(file_get_contents("php://input"));
echo $data->name;

希望这有帮助。


答案 2

相当老的帖子...但我认为我的解决方案也可能对其他人派上用场。

我不喜欢

json_decode(file_get_contents("php://input"));

溶液。。。基本上是因为它似乎违背了良好的做法(我可能错了)

这就是我如何解决它(适应上面的例子)

function PhpCtrl($scope, $http, $templateCache) {
  var method = 'POST';
  var url = 'url.php';
  $scope.codeStatus = "";
  $scope.add = function() {
    var FormData = {
      'name' : document.f1.name.value,
      'password' : document.f1.password.value
    };
    $http({
      method: method,
      url: url,
      data: $.param({'data' : FormData}),
      headers: {'Content-Type': 'application/x-www-form-urlencoded'},
      cache: $templateCache
    }).
    success(function(response) {
        $scope.codeStatus = response.data;
    }).
    error(function(response) {
        $scope.codeStatus = response || "Request failed";
    });
    return false;
  };
}

一旦完成

data: $.param({'data' : FormData}),
headers: {'Content-Type': 'application/x-www-form-urlencoded'},

您可以访问通常在PHP中的数据

$data = $_POST['data'];