我试图在 Angular 中突出显示一行。这是我的html:
<tr ng-class="{selected: $index==selectedIndex}" ng-repeat="encounter in encounters | filter:search" data-id="{{encounter.id}}" ng-click="getSelectedRow($index)">
这是该行的指令。它有点击处理程序getSelectedRow()
angular.module('app').directive('encounterItemTable', function ($rootScope) {
return {
restrict: 'A',
replace: true,
templateUrl: 'views/encounter.item.table.html',
scope: {
encounters : '='
},
link: function(scope) {
scope.getSelectedRow = function(index) {
$rootScope.$broadcast('selectedRow', { rowIndex: index });
};
}
};
});
这会广播到控制器以突出显示该行。这是控制器应该发挥作用的地方:
$scope.$on('selectedRow', function(event, data) {
$scope.selectedIndex = data.rowIndex;
$scope.selectedEncounter = $scope.encounters[data.rowIndex];
});
控制器中的代码被命中,但该行永远不会突出显示。我错过了什么?