在Angular 9中,可以使用@ViewChild装饰器来在父组件中引用子组件,并通过这个引用与子组件进行交互。
下面是一个示例,展示了如何在父组件中引用多个子组件:
在父组件的模板文件中,使用子组件的选择器来引用它们:
在父组件的类文件中,使用@ViewChild装饰器来引用子组件:
import { Component, ViewChild } from '@angular/core';
import { Child1Component } from './child1.component';
import { Child2Component } from './child2.component';
@Component({
selector: 'app-parent',
templateUrl: './parent.component.html',
styleUrls: ['./parent.component.css']
})
export class ParentComponent {
@ViewChild('child1') child1: Child1Component;
@ViewChild('child2') child2: Child2Component;
// 父组件中的方法,用于与子组件进行交互
callChildMethods() {
this.child1.childMethod();
this.child2.childMethod();
}
}
在父组件的类文件中,可以通过child1和child2引用子组件,并调用它们的方法。
注意:在使用@ViewChild装饰器时,需要注意选择器的名称与引用的名称保持一致。
希望这个示例可以帮助你解决问题。
上一篇:Angular 9 - [routerlink]转换为实际URL(同时添加查询参数)?
下一篇:Angular 9 -> 10 迁移。TypeError: core_1.virtualFs.createSyncHost 不是一个函数。