Angular 父子组件传值

时间:2024-07-16 16:33:20

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


  Angular 父子组件传值

新建一个头部组件 newsheader

  Angular 父子组件传值

  在主组件引用 news 组件,在news组件添加 newsheader 组件。

设置newsheader组件样式

设置newsheader组件的内容,添加一个class属性

<h2 class="header">这是一个头部组件</h2>

如果需要全局设置,则在 style.css 中设置。

Angular 父子组件传值

如果单独设置自己的,则在自己组件的css中设置。

Angular 父子组件传值

此项目案例设置全局的。

/* You can add global styles to this file, and also import other style files */

.header{
height: 44px;
line-height: 44px;
text-align: center;
background-color: #000;
color: #fff;
text-align: center;
}

Angular 父子组件传值

把新闻页面的数据传给头组件(父组件向子组件传值) @Input

 首先在新闻界组件定义一个数据(在父组件定义一个数据)

在父组件中创建一个变量,用于传递给子组件:

 public message = "这是新闻组件的MSG"

Angular 父子组件传值

这个 message 属性属于新闻组件(父组件),我们可以在新闻组件上打印出来。

<app-newsheader></app-newsheader>
<hr>
这是新闻组件 ----- {{message}}
<hr>
<br>

Angular 父子组件传值

Angular 父子组件传值

在头部组件(子组件)中并没有定义 message 属性,我们在头部(子组件)是拿不到数据的,他们数据不能共享,因此我们需要通过父组件把需要的值(message)传给子组件。

1.父组件调用子组件的时候传入数据

<app-newsheader [msg]="message"></app-newsheader>

Angular 父子组件传值

2.子组件引入 Input 模块

import { Component, OnInit,Input } from '@angular/core';

Angular 父子组件传值

3.接收父组件传进的数据

@Input() msg:string; /**通过Input接收父组件传进的msg */

Angular 父子组件传值

4.在头部(子组件)使用父组件传进的数据 msg

<h2 class="header">这是一个头部组件 -- {{msg}}</h2>

Angular 父子组件传值

Angular 父子组件传值

如果多个变量就添加多个HTML属性

假如 父组件 ts 文件有两个属性需要传给子组件

Angular 父子组件传值

父组件调用子组件的HTML代码也传入两个属性

Angular 父子组件传值

子组件在去接收父组件传进的两个值

Angular 父子组件传值

子组件就可以使用了

Angular 父子组件传值

Angular 父子组件传值

子组件执行父组件的方法 @Input

创建一个新的组件 home

Angular 父子组件传值

创建一个新的组件 footer

Angular 父子组件传值

通过 home 组件和 footer 组件来讲解子组件执行父组件的方法。

在 根组件 引入 home 组件,在 home组件 引入 footer 组件。


1.在home组件(父组件)创建一个 run 方法

ts文件

import { Component, OnInit } from '@angular/core';

@Component({
selector: 'app-home',
templateUrl: './home.component.html',
styleUrls: ['./home.component.css']
})
export class HomeComponent implements OnInit { public msg = "我是home组件的msg" constructor() { } ngOnInit() {
} run(){
alert('这是home组件的run方法')
} }

html 文件

<app-footer [msg]="msg" [run]="run"></app-footer>

<br>
<hr>
home组件<br>
<button (click)="run()">点击执行run方法</button>

Angular 父子组件传值

2.子组件接收父组件传进的数据和方法

ts 文件

import { Component, OnInit,Input } from '@angular/core';

@Component({
selector: 'app-footer',
templateUrl: './footer.component.html',
styleUrls: ['./footer.component.css']
})
export class FooterComponent implements OnInit { @Input() msg:string; @Input() run; constructor() { } ngOnInit() {
} }

  Angular 父子组件传值

html 文件

<h2 class="header">footer子组件 -- {{msg}}</h2>
<br>
<button (click)="run()">点击执行run方法</button>

Angular 父子组件传值

Angular 父子组件传值

父组件接收子组件返回的数据

在父组件创建一个方法,用于接收子组件数据

  // 接收子组件的数据
getDataFromChild(childData){
alert(childData)
}

Angular 父子组件传值

把 getDataFromChild 方法在调用子组件的时候传给子组件

<app-footer [msg]="msg" [run]="run" [getDataFromChild]="getDataFromChild"></app-footer>

<br>
<hr>
home组件<br>
<button (click)="run()">点击执行run方法</button>

Angular 父子组件传值

子组件接收父组件传进来的方法,并且创建方法返回给父组件数据

import { Component, OnInit,Input } from '@angular/core';

@Component({
selector: 'app-footer',
templateUrl: './footer.component.html',
styleUrls: ['./footer.component.css']
})
export class FooterComponent implements OnInit { @Input() msg:string; @Input() run;
@Input() getDataFromChild; public msginfo = '这是子组件的数据' constructor() { } ngOnInit() {
} sendParent(){ //子组件自己的方法
this.getDataFromChild(this.msginfo) //子组件调用父组件的方法
} }

Angular 父子组件传值

给子组件添加一个按钮给父组件传数据

<h2 class="header">footer子组件 -- {{msg}}</h2>
<br>
<button (click)="run()">点击执行run方法</button>
<button (click)="sendParent()">点击,给父组件传值</button>

Angular 父子组件传值

Angular 父子组件传值

子组件用 @Output 的方法执行父组件方法

使用最开始的 news 组件 和 newsheader 组件。

子组件引入 Output EventEmitter

import { Component, OnInit ,Input,Output,EventEmitter} from '@angular/core';

Angular 父子组件传值

子组件中实例化 EventEmitter

@Output() private outer=new EventEmitter<string>();

 /*用 EventEmitter 和 output 装饰器配合使用 <string>指定类型变量*/

Angular 父子组件传值

子组件通过 EventEmitter 对象 outer 实例广播数据

sendParent(){
// alert('zhixing');
this.outer.emit('msg from child')
}

Angular 父子组件传值

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

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

Angular 父子组件传值

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

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

Angular 父子组件传值

父组件主动获取子组件的属性和方法

定义 footer 组件

export class FooterComponent implements OnInit {
public msg:string;
constructor() { }
ngOnInit() {
}
footerRun(){
alert('这是 footer 子组件的 Run 方法');
}
}

Angular 父子组件传值

父组件调用子组件的时候给子组件起个名字

<app-footer #footer></app-footer>

Angular 父子组件传值

直接获取执行子组件的方法

<button (click)='footer.footerRun()'>获取子组件的数据</button>

Angular 父子组件传值

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

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

<app-footer #footerChild></app-footer>

引入 ViewChild

import { Component, OnInit ,ViewChild} from '@angular/core';

ViewChild 和刚才的子组件关联起来

@ViewChild('footerChild') footer;

调用子组件

run(){

 this.footer.footerRun();
}

Angular 父子组件传值