カスタムを作成し、次のattr directive
ような兄弟要素で使用します。
<div>
<div [customAttrDirective]="'value'">1</div>
<div [customAttrDirective]="'value'">2</div>
<div [customAttrDirective]="'value'">3</div>
<div [customAttrDirective]="'value'">4</div>
</div>
service
また、すべてのディレクティブを制御する を作成しました。この中で、ディレクティブの数を知りたいですcustomAttrDirective
。
PS:クラス名で検索しても(ディレクティブ内にクラスを追加するため)、属性(ディレクティブ名)で検索しても角度が変わるため実行できません。
編集:間違ったシンタックスcustomAttrDirective="'value'"
をに置き換えました[customAttrDirective]="'value'"
どうもありがとう。