这是我的问题-我无法将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
最佳答案
我可能更喜欢使用自定义指令,该指令将特殊类添加到您的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
关于javascript - 如何在 Angular Material 中将ng类实现为md芯片,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35238286/