溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Angular組件之間是怎么通信的

發(fā)布時間:2021-08-16 10:45:59 來源:億速云 閱讀:129 作者:chen 欄目:web開發(fā)

這篇文章主要介紹“Angular組件之間是怎么通信的”,在日常操作中,相信很多人在Angular組件之間是怎么通信的問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Angular組件之間是怎么通信的”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

一、父組件通過輸入型綁定將數(shù)據(jù)傳遞給子組件

父組件

parent.component.ts

age = 18;
name = '  xiaoming '

parent.component.html

<app-child-1 [age]="age" [name]="name"></app-child-1>

子組件

child1.component.ts

@Input() age!: number;

截聽輸入屬性值的變化

1、使用一個輸入屬性的 setter,以攔截父組件中值的變化,并采取行動。

child1.component.ts

@Input()
set name(name: string) {
    this._name = name.trim();
}
private _name: string;

2、使用 ngOnChanges()鉤子函數(shù)來監(jiān)測輸入屬性值的變化并做出回應(yīng)。當需要監(jiān)視多個、交互式輸入屬性的時候,本方法比用屬性的 setter 更合適。

child1.component.ts

ngOnChanges(changes: SimpleChanges): void {
    console.log(changes);
}

我們可以通過angular官方提供的類型描述文件了解到SimpleChange的相關(guān)屬性:

Angular組件之間是怎么通信的

Angular組件之間是怎么通信的

二、父組件監(jiān)聽子組件的事件獲取子組件傳遞給父組件的值

子組件暴露一個EventEmitter(帶有@Output裝飾器)屬性,當事件發(fā)生時,子組件利用該屬性emit事件往父組件發(fā)射值。父組件綁定到這個事件屬性,并在事件發(fā)生時作出回應(yīng)。

子組件

child1.component.ts

@Output() voted = new EventEmitter<boolean>();
emitValue(): void {
    this.voted.emit(true);
}

child1.component.html

<button (click)="emitValue()">Click</button>

父組件

parent.component.html

<app-child-1 [age]="age" [name]="name" (voted)="getChildParam($event)"></app-child-1>

parent.component.ts

getChildParam(value: boolean): void {
    console.log(value); // true
}

三、父組件通過本地變量(#varibleName)在模板中讀取子組件的屬性和調(diào)用子組件的方法

子組件

child1.component.ts

address = 'Shanghai';
setAddress(address: string): void {
    this.address = address;
}

父組件

parent.component.html

<app-child-1 [age]="age" [name]="name" (voted)="getChildParam($event)" #child1Component></app-child-1>
<div>{{child1Component.address}}</div>
<button (click)="child1Component.setAddress('Beijing')">Click</button>

局限性:父組件-子組件的連接必須全部在父組件的模板中進行。如果父組件的類需要讀取子組件的屬性值或調(diào)用子組件的方法,就不能使用本地變量方法。

四、父組件調(diào)用@ViewChild

當父組件的類需要讀取子組件的屬性值或調(diào)用子組件的方法,就不能使用本地變量方法;如果有這種需求時,我們可以通過@ViewChild把子組件注入到父組件中;

父組件

parent.component.ts

@ViewChild(Child1Component) private child1Component!: Child1Component;

可以通過child1Component變量訪問子組件的屬性和方法;

五、利用共享服務(wù)實現(xiàn)任意組件之間的通信

為了實現(xiàn)任意組件之間的通信,我們可以結(jié)合Rxjs中的BehaviorSubject對象來創(chuàng)建一個共享服務(wù);BehaviorSubject的使用可以參考這篇博客blog.tcs-y.com/2019/10/08/…

創(chuàng)建dataService.ts

import {BehaviorSubject} from 'rxjs';
import { Injectable} from '@angular/core';
@Injectable(
  {providedIn: 'root'}
)
export class DataService {
  data: BehaviorSubject<number> = new BehaviorSubject<number>(0);
}

在組件1的構(gòu)造函數(shù)中注入服務(wù)并設(shè)置data

child1.component.ts

constructor(private dataService: DataService) {}
    // 設(shè)置data的值
changeData(): void {
    this.dataService.data.next(10);
}

child1.component.html

<button (click)="changeData()">Click</button>

在組件2的構(gòu)造函數(shù)中注入服務(wù)并訂閱data

child2.component.ts

constructor(private dataService: DataService) {
    this.dataService.data.subscribe(value => {
        console.log(value); // 10
    });
}

到此,關(guān)于“Angular組件之間是怎么通信的”的學習就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI