您好,登錄后才能下訂單哦!
本文小編為大家詳細介紹“Angular中組件之間如何通信”,內容詳細,步驟清晰,細節(jié)處理妥當,希望這篇“Angular中組件之間如何通信”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。
相當于你自定義了一個屬性,通過組件的引入,將值傳遞給子組件。Show you the CODE
。
<!-- parent.component.html --> <app-child [parentProp]="'My kid.'"></app-child>
在父組件中調用子組件,這里命名一個 parentProp
的屬性。
// child.component.ts import { Component, OnInit, Input } from '@angular/core'; @Component({ selector: 'app-child', templateUrl: './child.component.html', styleUrls: ['./child.component.scss'] }) export class ChildComponent implements OnInit { // 輸入裝飾器 @Input() parentProp!: string; constructor() { } ngOnInit(): void { } }
子組件接受父組件傳入的變量 parentProp
,回填到頁面。
<!-- child.component.html --> <h2>Hello! {{ parentProp }}</h2>
通過 new EventEmitter()
將子組件的數據傳遞給父組件。
// child.component.ts import { Component, OnInit, Output, EventEmitter } from '@angular/core'; @Component({ selector: 'app-child', templateUrl: './child.component.html', styleUrls: ['./child.component.scss'] }) export class ChildComponent implements OnInit { // 輸出裝飾器 @Output() private childSayHi = new EventEmitter() constructor() { } ngOnInit(): void { this.childSayHi.emit('My parents'); } }
通過 emit
通知父組件,父組件對事件進行監(jiān)聽。
// parent.component.ts import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-communicate', templateUrl: './communicate.component.html', styleUrls: ['./communicate.component.scss'] }) export class CommunicateComponent implements OnInit { public msg:string = '' constructor() { } ngOnInit(): void { } fromChild(data: string) { // 這里使用異步 setTimeout(() => { this.msg = data }, 50) } }
在父組件中,我們對 child
組件來的數據進行監(jiān)聽后,這里采用了 setTimeout
的異步操作。是因為我們在子組件中初始化后就進行了 emit
,這里的異步操作是防止 Race Condition
競爭出錯。
我們還得在組件中添加 fromChild
這個方法,如下:
<!-- parent.component.html --> <h2>Hello! {{ msg }}</h2> <app-child (childSayHi)="fromChild($event)"></app-child>
我們通過操縱引用的方式,獲取子組件對象,然后對其屬性和方法進行訪問。
我們先設置子組件的演示內容:
// child.component.ts import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-child', templateUrl: './child.component.html', styleUrls: ['./child.component.scss'] }) export class ChildComponent implements OnInit { // 子組件的屬性 public childMsg:string = 'Prop: message from child' constructor() { } ngOnInit(): void { } // 子組件方法 public childSayHi(): void { console.log('Method: I am your child.') } }
我們在父組件上設置子組件的引用標識 #childComponent
:
<!-- parent.component.html --> <app-child #childComponent></app-child>
之后在 javascript
文件上調用:
import { Component, OnInit, ViewChild } from '@angular/core'; import { ChildComponent } from './components/child/child.component'; @Component({ selector: 'app-communicate', templateUrl: './communicate.component.html', styleUrls: ['./communicate.component.scss'] }) export class CommunicateComponent implements OnInit { @ViewChild('childComponent') childComponent!: ChildComponent; constructor() { } ngOnInit(): void { this.getChildPropAndMethod() } getChildPropAndMethod(): void { setTimeout(() => { console.log(this.childComponent.childMsg); // Prop: message from child this.childComponent.childSayHi(); // Method: I am your child. }, 50) } }
這種方法有個限制?,就是子屬性的修飾符需要是 public
,當是 protected
或者 private
的時候,會報錯。你可以將子組件的修飾符更改下嘗試。報錯的原因如下:
類型 | 使用范圍 |
---|---|
public | 允許在累的內外被調用,作用范圍最廣 |
protected | 允許在類內以及繼承的子類中使用,作用范圍適中 |
private | 允許在類內部中使用,作用范圍最窄 |
我們結合 rxjs
來演示。
rxjs 是使用 Observables
的響應式編程的庫,它使編寫異步或基于回調的代碼更容易。
后期會有一篇文章記錄
rxjs
,敬請期待
我們先來創(chuàng)建一個名為 parent-and-child
的服務。
// parent-and-child.service.ts import { Injectable } from '@angular/core'; import { BehaviorSubject, Observable } from 'rxjs'; // BehaviorSubject 有實時的作用,獲取最新值 @Injectable({ providedIn: 'root' }) export class ParentAndChildService { private subject$: BehaviorSubject<any> = new BehaviorSubject(null) constructor() { } // 將其變成可觀察 getMessage(): Observable<any> { return this.subject$.asObservable() } setMessage(msg: string) { this.subject$.next(msg); } }
接著,我們在父子組件中引用,它們的信息是共享的。
// parent.component.ts import { Component, OnDestroy, OnInit } from '@angular/core'; // 引入服務 import { ParentAndChildService } from 'src/app/services/parent-and-child.service'; import { Subject } from 'rxjs' import { takeUntil } from 'rxjs/operators' @Component({ selector: 'app-communicate', templateUrl: './communicate.component.html', styleUrls: ['./communicate.component.scss'] }) export class CommunicateComponent implements OnInit, OnDestroy { unsubscribe$: Subject<boolean> = new Subject(); constructor( private readonly parentAndChildService: ParentAndChildService ) { } ngOnInit(): void { this.parentAndChildService.getMessage() .pipe( takeUntil(this.unsubscribe$) ) .subscribe({ next: (msg: any) => { console.log('Parent: ' + msg); // 剛進來打印 Parent: null // 一秒后打印 Parent: Jimmy } }); setTimeout(() => { this.parentAndChildService.setMessage('Jimmy'); }, 1000) } ngOnDestroy() { // 取消訂閱 this.unsubscribe$.next(true); this.unsubscribe$.complete(); } }
import { Component, OnInit } from '@angular/core'; import { ParentAndChildService } from 'src/app/services/parent-and-child.service'; @Component({ selector: 'app-child', templateUrl: './child.component.html', styleUrls: ['./child.component.scss'] }) export class ChildComponent implements OnInit { constructor( private parentAndChildService: ParentAndChildService ) { } // 為了更好理解,這里我移除了父組件的 Subject ngOnInit(): void { this.parentAndChildService.getMessage() .subscribe({ next: (msg: any) => { console.log('Child: '+msg); // 剛進來打印 Child: null // 一秒后打印 Child: Jimmy } }) } }
在父組件中,我們一秒鐘之后更改值。所以在父子組件中,一進來就會打印 msg
的初始值 null
,然后過了一秒鐘之后,就會打印更改的值 Jimmy
。同理,如果你在子組件中對服務的信息,在子組件打印相關的值的同時,在父組件也會打印。
讀到這里,這篇“Angular中組件之間如何通信”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業(yè)資訊頻道。
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。