如何在角材料中实现ng-class到md-chip

时间:2016-02-06 06:54:18

标签: javascript css angularjs angular-material md-chip

这是我的问题 - 我无法ng-class='{activeTag: $chip.active}'实施<md-chip></md-chip>。我已尝试将此指令添加到<md-chips></md-chips>,但它不起作用(因为$chip不在当前范围内)。我也可以将这个ng-class添加到md-chip-template,但在视觉上它并不是我想要的,我需要为标签中的所有内容提供背光。顺便说一句,<md-chip></md-chip>md-chips指令中动态创建。也许有人遇到这个问题或者只是知道解决方案。感谢。

这是我的控制器

controller('ChipsController', function($scope) {
    $scope.tags = [
      {
        id: 1,
        name: 'Pop',
        active: false
      },
      {
        id: 2,
        name: 'Rock',
        active: true
      },
      {
        id: 3,
        name: 'Reggie',
        active: false
      }
  ];

});

我的观点

<md-chips class="custom-chips selected" ng-model="tags" readonly="true">
<md-chip-template ng-class="{'activeTag': $chip.active}" style="cursor: pointer;">
  <a ui-sref="">
    <strong>{{$chip.id}}</strong>
    <em>({{$chip.name}})</em>
  </a>
</md-chip-template>

我的css

.activeTag {
  background: rgba(85, 107, 47, 0.66) !important;
  color: white !important; 
}

Here is the plunker

1 个答案:

答案 0 :(得分:4)

我可能更喜欢使用自定义指令,它会为您的chip

添加特殊类
.directive('myChip', function(){
    return {
        restrict: 'EA',
        link: function(scope, elem, attrs) {
            var myChip = elem.parent().parent();
            myChip.addClass('_active');

            scope.$watch(function(){
                return scope.$chip.active
            }, function(newVal){
                if (newVal) {
                  myChip.addClass('_active');
                } else {
                  myChip.removeClass('_active');
                }
            })

        }
    }
})

模板

<md-chip-template ng-class="{'activeTag': $chip.active}" style="cursor: pointer;" my-chip>

样式

.md-chip._active {
  background: rgba(85, 107, 47, 0.66) !important;
  color: white !important;
}

http://plnkr.co/edit/vv2SvH1gNj3OIh1oaqvV?p=preview