您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關Angular中父子組件間如何進行通信,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。
通過Input和Ouput傳值
父組件:html和ts
<app-liftcycle [name]="name" (changeName)="changeName($event)"></app-liftcycle>
public name: string = "jack"; public changeName(value: string) { this.name = value; }
子組件:html和ts
<div (click)="emit()">{{name}}</div>
import { Component, Input, EventEmitter, Output } from '@angular/core'; @Input() name: string; @Output() changeName: EventEmitter<string> = new EventEmitter<string>(); public emit() { this.changeName.emit("修改name屬性"); }
通過setter監聽屬性的變化
父組件同上,子組件:
private _name: string = ""; @Input() public get name(): string { return this._name; } public set name(value: string) { this._name = value + "定義結構"; }
通過ngOnChanges鉤子函數監聽輸入屬性的變化
ngOnChanges在監聽多個屬性的時候,要比setter的方式簡便一些。
@Input() name: string; ngOnChanges(changes: SimpleChanges): void { (({name}) => { console.log(name.currentValue,name.previousValue); })(changes); }
父組件html中通過模板變量調用子組件的方法和屬性。
模板變量獲取了子組件的一個引用。 父組件:
<app-liftcycle #child></app-liftcycle> <button (click)="child.childFn()">按鈕</button>
子組件:
public childFn() { console.log("通過模板變量調用子組件中的方法"); }
父組件通過ViewChild獲取子組件實例
<app-liftcycle [name]="name" (changeName)="changeName($event)" #child></app-liftcycle> <button (click)="childFn()">childFn</button>
@ViewChild("child") child: LiftcycleComponent; public childFn(): void { this.child.childFn(); }
通過service進行通信
service:
import { Subject } from 'rxjs'; import { Injectable } from '@angular/core'; @Injectable({ providedIn: 'root' }) export class CommunService { constructor() {} public commun = new Subject<string>(); communSend() { this.commun.next("send"); } }
父組件:
constructor(private commun: CommunService) { } public send(): void { this.commun.communSend(); }
子組件:
constructor(private commun: CommunService) { this.commun.commun.subscribe((value) => {console.log(value)}); }
父組件傳遞方法
父組件通過屬性傳遞給子組件方法,子組件進行調用,一般不推薦,React采用這種通信方式。 可能是基于this的綁定錯綜復雜,所以angular不太推薦。React Hooks的出現也有一部分原因 是class類的this錯綜復雜。 父組件:
<app-liftcycle [send]="send.bind(this)"></app-liftcycle>
public name: string = "jack"; public send(): void { console.log(this.name); }
子組件:
<button (click)="childSend()">childSend</button>
@Input() send: Function; public childSend() { this.send(); }
看完上述內容,你們對Angular中父子組件間如何進行通信有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。