在我的控制器中,我有这个功能:
$scope.add = function(key){
$scope.key = key;
};
这是我的html视图:
<button type="button" ng-click="addVote({{key}});">Confirm</button>
我的问题是ng-click="addVote({{key}})
。我想在我的视图中调用$scope.key
值。它不起作用。我做错了什么?
答案 0 :(得分:2)
删除{{}}并发送简单对象
ng-click="addVote(key)"
答案 1 :(得分:1)
您无需在ng-click等属性中执行任何插值。所以你的代码应该如下:
<button type="button" ng-click="addVote(key);">Confirm</button>