我正在尝试确定Angular指令中是否禁用了元素。
到目前为止,我一直在尝试与主持人的收听者
指令:
@HostBinding('attr.disabled') isDisabled : boolean;
@HostListener("disabled") disabled() {
if(this.isDisabled) {
// do some action
}
}
它与二传手一起为我工作
@Input('disabled')
set disabled(val: string) {
if(val) {
this.elementRef.nativeElement.setAttribute('disabled', val);
} else {
this.elementRef.nativeElement.removeAttribute('disabled');
}
}
但是我不想使用setter,因为我正在开发的指令不需要启用和禁用按钮,它仅侦听禁用属性的更改。
我希望它与禁用逻辑通用。
答案 0 :(得分:1)
不确定这是否正确,但是可以。
https://stackblitz.com/edit/mutationobserver-test
import { Directive, ElementRef } from '@angular/core';
@Directive({
selector: '[appTestDir]'
})
export class TestDirDirective {
observer: MutationObserver;
constructor(private _el: ElementRef) {
console.log(_el);
this.observer = new MutationObserver(
list => {
for (const record of list) {
console.log(record);
if (record && record.attributeName == 'disabled' && record.target && record.target['disabled'] !== undefined) {
this._el.nativeElement.style.border = record.target['disabled'] ? '2px dashed red' : null;
}
}
}
);
this.observer.observe(this._el.nativeElement, {
attributes: true,
childList: false,
subtree: false
});
}
}