親スコープにバインドされたいくつかの値に基づいて、カスタム ディレクティブが独自のクラスを前処理できるようにしたいと考えています。ただし、独自の ng-class を設定し、ローカル スコープで関数を実行するディレクティブを取得できないようです。
directive('testDirective',function(){
restrict: 'E',
scope: {
inputValue: '='
},
template: '<div>dynamically styled content</div>',
bindToController: true,
controllerAs: 'ctrl',
compile: function(element){
element.attr('ng-class', 'ctrl.getClass()');
},
controller: function(){
this.getClass = function(){
//return array of classes based on value of this.inputValue
}
}
});
残念ながら、式は評価されず、文字列として割り当てられるだけなので、スタイルは適用されません。DOM要素を調べると、次のように表示されます
ng-class="ctrl.getClass()"
jQuery を使用してリンク関数にクラスを追加することもできますが、それらはデータにバインドされません。また、可能な限り $watch の使用を避けたいと考えていました。
どんなアイデアでも大歓迎です!