如何使用锚标记将Angular js值发送​​到PHP

时间:2016-03-30 12:13:01

标签: javascript angularjs

我是Angular js的新手。在这里,我正在尝试将值发送到PHP.Suppose,我点击“View”,然后相应的GR_ID应发送给PHP。

HTML:

<table>
<tr>
<th>Sr No.</th>
</tr>
<tr ng-repeat=user in users>
<td>{{user.GR_Id}}</td>
<td><a href="fetch.php?GR_ID+"={{user.GR_Id}}>VIEW</a></td> 
                    </tr>

Angular js:

var app = angular.module('angularTable', []);

app.controller('listdata',function($scope){
$scope.users=[
{GR_Id:1,country:'Norway'},
{GR_Id:2,country:'Sweden'},
{GR_Id:3,country:'Denmark'}]
});

PHP:

echo $_get['GR_ID'];  // 1 or 2 or 3.

请帮帮我。谢谢。

2 个答案:

答案 0 :(得分:0)

您必须使用ng-href

<td><a ng-href="fetch.php?GR_ID={{user.GR_Id}}">VIEW</a></td> 

答案 1 :(得分:0)

您必须使用ng-href而不是href,否则将不会插入GR_ID的值。

ng-href directive