Angular父组件调用子组件的方法
程序员文章站
2022-11-23 11:39:06
理解组件
组件是一种特殊的指令,使用更简单的配置项来构建基于组件的应用程序架构
这样他能简单地写app,通过类似的web component 或者angular2的样式...
理解组件
组件是一种特殊的指令,使用更简单的配置项来构建基于组件的应用程序架构
这样他能简单地写app,通过类似的web component 或者angular2的样式。
web component 是一个规范。马上就要成为标准。
应用组件的优点:
- 比普通指令配置还简单
- 提供更好的默认设置和最好的实践
- 对基于组建的应用架构更优化。
- 对angular2的升级更平滑。
不用组建的情况:
- 对那些在 compile或者pre-link阶段要执行操作的指令,组件不能用,因为无法到达那个阶段。
- 如果你想定义指令的 priority,terminal,multi-element,也不能用。
- 组件只能通过元素标签触发,其他的只能用命令。
viewchild装饰器。
父组件的模版和控制器里调用子组件的api。
1、创建一个子组件child1里面只有一个greeting方法供父组件调用。
import { component, oninit } from '@angular/core'; @component({ selector: 'app-child1', templateurl: './child1.component.html', styleurls: ['./child1.component.css'] }) export class child1component implements oninit { constructor() { } ngoninit() { } greeting(name: string) { console.log("hello" + name); } }
2、父组件中分别在模版中用模版本地变量调用和在控制器中用ts代码调用。
父组件写2个<app-child>
并分别指定模版本地变量
<app-child1 #child1> </app-child1> <app-child1 #child2> </app-child1>
3,在父组件控制器中声明一个由viewchild装饰器装饰的变量获得子组件的引用。
通过模版变量的名字child1找到相应的子组件并赋值给child1变量,拿到引用就可以调用子组件方法。
@viewchild('child1') child1:child1component; //父组件中获得子组件的引用 ngoninit(){ this.child1.greeting("tom"); }
4,在父组件模版中调用子组件方法。
在父组件模版中加一个button,点击时去调用子组件child2的greeting方法。
<app-child1 #child1> </app-child1> <app-child1 #child2> </app-child1> <button (click)="child2.greeting('jerry')">调用child2的greeting方法</button>
总结
以上所述是小编给大家介绍的angular父组件调用子组件的方法,希望对大家有所帮助