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 に答える