1

我有一个 HTLM 表,其中包含有关人员(id、name、..)的信息。我把这个名字作为另一个页面的链接,所以当我按下任何人的名字时,我想将此人的 id 传递给另一个 php 页面以使用它。下面是我的代码:

HTML:

<tr ng-repeat="x in data | filter:search:restrict">
    <td>{{ x.id }}</td>
    <td><button  ng-controller ="direct" class="btn btn-link" ng-click = "sendID(x.id)">{{ x.name }}</button></td>

控制器 :

fetch.controller('direct',function($scope,$http,$window){
        $scope.sendID=function(){
        $http.post("here.php",{'id':$scope.id})
                .success(function(headers,config){
                });
        $window.location.href = '/here.php'; 
    }

});

第二页,我想将 id 传递给:

<?php

$data = json_decode(file_get_contents("php://input"));

echo $data->id;

?>

当我单击任何按钮时,第二页显示:

“注意:试图获取非对象的属性”

知道什么是错的吗?!

谢谢你。

4

2 回答 2

0

可以通过href传递id:

$window.location.href = '/here.php?id=' + $scope.id; 

PHP

<?php
  $id = $_GET['id'];
  echo $id;
?>
于 2016-03-03T18:53:11.230 回答
0

如果您只想在下一页访问它,请将其作为查询字符串传递,否则将值保存在 $rootscope 中,以便可以从任何控制器访问它

于 2016-03-03T19:22:56.383 回答