我有一个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;
?>
当我单击任何按钮时,第二页显示:
“注意:试图获取非对象的属性”
有什么问题的主意吗?
谢谢。
最佳答案
可以通过href传递ID:
$window.location.href = '/here.php?id=' + $scope.id;
的PHP
<?php
$id = $_GET['id'];
echo $id;
?>
关于javascript - 如何使用Angular Controller 将变量传递到另一页?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35779506/