angular ViewChild ContentChild 系列的查詢參數

官方說明

官方文檔
在調用 NgAfterViewInit 回調函數以前就會設置這些視圖查詢。
元數據屬性:html

  • selector - 用於查詢的指令類型或名字。
  • read - 從查詢到的元素中讀取另外一個令牌。

所支持的選擇器包括:api

  • 任何帶有 @Component 或 @Directive 裝飾器的類
  • 字符串形式的模板引用變量(好比可使用 @ViewChild('cmp') 來查詢 <my-component #cmp>
  • 組件樹中任何當前組件的子組件所定義的提供商(好比 @ViewChild(SomeService) someService: SomeService )
  • 任何經過字符串令牌定義的提供商(好比 @ViewChild('someToken') someTokenVal: any )
  • TemplateRef(好比能夠用 @ViewChild(TemplateRef) template; 來查詢

代碼:app

<div #testBox [appElementTitle]="'屬性指令測試'" [appCopyAttr]="'https://liangyuetian.cn/'">
    appElementTitle 屬性指令測試 appCopyAttr 屬性指令測試
</div>
<div #box [appElementTitle]="'這是box的title'" [appCopyAttr]="'https://baidu.com.cn/'">
    appElementTitle 屬性指令測試 appCopyAttr 屬性指令測試
</div>
export class AppComponent implements OnInit, AfterViewInit {
    @ViewChild('testBox', {read: ElementRef}) elBox: ElementRef;
    @ViewChild('testBox', {read: CopyAttrDirective}) copy: CopyAttrDirective;
    @ViewChild('testBox', {read: ElementTitleDirective}) titles: ElementTitleDirective;

    @ViewChild('box', {read: ElementRef}) elBox2: ElementRef;
    @ViewChild('box', {read: CopyAttrDirective}) copy2: CopyAttrDirective;
    @ViewChild('box', {read: ElementTitleDirective}) titles2: ElementTitleDirective;

    keyUpSearch($event: { [key: string]: any }) {
        console.log($event.code, $event.key, $event);
    }
    ngOnInit() {
    }
    ngAfterViewInit() {
        console.log('one', this.elBox, this.copy, this.titles);
        console.log('tow', this.elBox2, this.copy2, this.titles2);
    }
}

效果:
函數

相關文章
相關標籤/搜索