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);
    }
}

效果:
函数

相关文章
相关标签/搜索