您好,登錄后才能下訂單哦!
這篇“Angular組件間進行通信的方法有哪些”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“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
通知父組件,父組件對事件進行監聽。
// 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
組件來的數據進行監聽后,這里采用了 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
,敬請期待
我們先來創建一個名為 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組件間進行通信的方法有哪些”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。