11

出于某种原因,当在 ng-click 中使用 {{$index}} 时,AngularJS 不会触发该事件。

我的html:

<div ng-controller="Ctrl">
  <ul>
    <li ng-repeat="foo in foos">
     <label>{{foo.name}}</label>
     <a href="#" ng-click="remove({{$index}})">X (doesnt work)</a>
     <a href="#" ng-click="remove(0)">Remove first element (works)</a>
    </li>
  </ul>
 </div>

jsfiddle:http: //jsfiddle.net/Lcasg/3/

任何人都知道如何解决这个问题?谢谢

4

3 回答 3

21

ng-click 属性的值被评估为角度表达式,因此只需使用remove($index).

于 2013-01-30T03:48:31.933 回答
3

解决了!

<div ng-repeat="idiomax in textos.idiomas ">
    <div class="idioma"  ng-click="cambiaridioma($index)" ng-class="idioma != $index || 'idioma-activo'" > 
    {{idiomax.idioma}}
    </div>
</div>

$scope.cambiaridioma = function (indice) {
        $scope.idioma = indice;

    }
于 2015-11-27T20:06:39.183 回答
0

我必须$index在字符串表达式中使用,这就是它的工作方式:

HTML

<button ng-click="showUserStories($event, '#modal-id-prefix-' + $index)">Show Modal</button>

脚本

$scope.showUserStories = function(event, modalId) {
        $(modalId).modal("show");
        event.stopPropagation();
    }
于 2018-11-29T05:26:05.343 回答