父子组件传值@Input @Output @ViewChild

目录
一、 父组件给子组件传值 -@Input
二、 父子组件传值的方式让子组件执行父组件的方法
三、 子组件通过@Output执行父组件的方法
四、 父组件通过局部变量获取子组件的引用 ,主动获取子组件的数据和方法(一) 5
五、 父组件通过ViewChild主动获取子组件的数据和方法

一、 父组件给子组件传值 -@Input

  1. 父组件调用子组件的时候传入数据
  1. <app-header [msg]="msg"></app-header>
  1. 子组件引入Input模块
  1. import { Component, OnInit ,Input } from '@angular/core';
  1. 子组件中 @Input接收父组件传过来的数据
  1. export class HeaderComponent implements OnInit {
  2. @Input() msg:string
  3. constructor() { }
  4. ngOnInit() { }
  5. }
  1. 子组件中使用父组件的数据
  1. <h2>这是头部组件--{{msg}}</h2>

二、 父子组件传值的方式让子组件执行父组件的方法

  1. 父组件定义方法
  1. run(){ alert('这是父组件的run方法'); }

2.调用子组件传入当前方法

  1. <app-header [msg]="msg" [run]="run"></app-header>
  1. 子组件接收父组件传过来的方法
  1. import { Component, OnInit ,Input } from '@angular/core';
  2. export class HeaderComponent implements OnInit {
  3. @Input() msg:string
  4. @Input() run:any;
  5. constructor() { }
  6. }
  1. 子组件使用父组件的方法。
    1. export class HeaderComponent implements OnInit {
    2. @Input() msg:string;
    3. @Input() run:any;
    4. constructor() { }
    5. ngOnInit() {
    6. this.run(); /*子组件调用父组件的run方法*/
    7. }
    8. }

三、 子组件通过@Output执行父组件的方法

  1. 子组件引入Output 和 EventEmitter
  1. import { Component, OnInit ,Input,Output,EventEmitter} from '@angular/core';

2.子组件中实例化 EventEmitter

  1. @Output() private outer=new EventEmitter<string>(); /*用EventEmitter 和output装饰器配合使用 <string>指定类型变量*/
  1. 子组件通过 EventEmitter 对象outer实例广播数据
  1. sendParent(){ // alert('zhixing');
  2. this.outer.emit('msg from child')
  3. }

4.父组件调用子组件的时候,定义接收事件 , outer就是子组件的EventEmitter 对象outer

  1. <app-header (outer)="runParent($event)"></app-header>

5.父组件接收到数据会调用自己的runParent方法,这个时候就能拿到子组件的数据

  1. //接收子组件传递过来的数据
  2. runParent(msg:string){ alert(msg); }

四、 父组件通过局部变量获取子组件的引用 ,主动获取子组件的数据和方法(一)

  1. 定义footer组件
  1. export class FooterComponent implements OnInit {
  2. public msg:string;
  3. constructor() { }
  4. ngOnInit() { }
  5. footerRun(){
  6. alert('这是footer子组件的Run方法');
  7. }
  8. }
  1. 父组件调用子组件的时候给子组件起个名字
  1. <app-footer #footer></app-footer>
  1. 直接获取执行子组件的方法
  1. <button (click)='footer.footerRun()'>获取子组件的数据</button>

五、 父组件通过局部变量获取子组件的引用,通过ViewChild主动获取子组件的数据和方法

1.调用子组件给子组件定义一个名称

  1. <app-footer #footerChild></app-footer>
  1. 引入ViewChild
  1. import { Component, OnInit ,ViewChild} from '@angular/core';
  1. ViewChild和刚才的子组件关联起来
  1. @ViewChild('footerChild') footer;

4.调用子组件

  1. run(){ this.footer.footerRun(); }
作者:admin  创建时间:2018-06-18 17:21
 更新时间:2018-06-18 17:36