AngularJS ng-click event not firing within ng-repeat
问题 I have a list of tags built from a JSON object... <div ng-repeat="comedian in comedians.details | orderBy: 'tag' | unique: 'tag'"> <span ng-click="search = { tag: comedian.tag }">{{ comedian.tag }}</span> </div> And a list of images built from the same object... <div ng-repeat="comedian in comedians.details | orderBy: 'name' | filter:search:strict"> <img width="50" src="{{ comedian.image }}" alt="{{ comedian.name }}"> </div> Both lists build as expected. But the click event is not firing to