填写这份《一分钟调查》,帮我们(开发组)做得更好!去填写Home

ViewChildren

用于配置视图查询的参数装饰器。

Parameter decorator that configures a view query.

查看"说明"...

说明

用于从视图 DOM 中获取元素或指令的 QueryList。每当添加、删除或移动子元素时,此查询列表都将更新,并且其可观察对象 changes 将发出新值。

Use to get the QueryList of elements or directives from the view DOM. Any time a child element is added, removed, or moved, the query list will be updated, and the changes observable of the query list will emit a new value.

在调用 ngAfterViewInit 前设置的视图查询。

View queries are set before the ngAfterViewInit callback is called.

元数据属性

Metadata Properties:

  • selector - 要查询的指令类型或名称。

    selector - The directive type or the name used for querying.

  • read - Used to read a different token from the queried elements.

  • read - 用于从查询的元素中读取不同的令牌。

    emitDistinctChangesOnly - The QueryList#changes observable will emit new values only if the QueryList result has changed. When false the changes observable might emit even if the QueryList has not changed. Note: * This config option is deprecated, it will be permanently set to true and removed in future versions of Angular.

Further information available in the Usage Notes...

选项

使用说明

      
      import {AfterViewInit, Component, Directive, QueryList, ViewChildren} from '@angular/core';

@Directive({selector: 'child-directive'})
class ChildDirective {
}

@Component({selector: 'someCmp', templateUrl: 'someCmp.html'})
class SomeCmp implements AfterViewInit {
  @ViewChildren(ChildDirective) viewChildren!: QueryList<ChildDirective>;

  ngAfterViewInit() {
    // viewChildren is set
  }
}
    

Another example

      
      import {AfterViewInit, Component, Directive, Input, QueryList, ViewChildren} from '@angular/core';

@Directive({selector: 'pane'})
export class Pane {
  @Input() id!: string;
}

@Component({
  selector: 'example-app',
  template: `
    <pane id="1"></pane>
    <pane id="2"></pane>
    <pane id="3" *ngIf="shouldShow"></pane>

    <button (click)="show()">Show 3</button>

    <div>panes: {{serializedPanes}}</div>
  `,
})
export class ViewChildrenComp implements AfterViewInit {
  @ViewChildren(Pane) panes!: QueryList<Pane>;
  serializedPanes: string = '';

  shouldShow = false;

  show() {
    this.shouldShow = true;
  }

  ngAfterViewInit() {
    this.calculateSerializedPanes();
    this.panes.changes.subscribe((r) => {
      this.calculateSerializedPanes();
    });
  }

  calculateSerializedPanes() {
    setTimeout(() => {
      this.serializedPanes = this.panes.map(p => p.id).join(', ');
    }, 0);
  }
}