我的页面中有如下链接:
<li ng-repeat="o in villes | shuffle | limitTo:5"><a href="#" ng-click="searchByVille({{o.codeVille}})">{{o.nomVille}}</a></li>
我希望当我点击某个链接调用searchByVille
函数并记录我传递给它的参数时,如下所示:
$scope.search = function(id){
console.log(id);
}
哪个不起作用。
我该如何解决这个问题?
答案 0 :(得分:4)
忽略 def createTree(self):
#root
self.put("F",6)
#leftSubTree
self.put("D",4)
#leftLeftSubTree
self.put("C",3)
self.put("B",2)
self.put("A",1)
#LeftRightSubTree
self.put("E",5)
#RightSubTree
self.put("I",9)
#RightLeftSubTree
self.put("G",7)
self.put("H",8)
#RightRightSubTree
self.put("J",10)
指令中的{{}}
:
ngClick
ng-click="searchByVille(o.codeVille)"
已经采用了Angular表达式 - 不需要它们。
答案 1 :(得分:0)
无需使用{{}}进行评估。
使用data-ng-click="searchByVille(o.codeVille)"