今天就跟大家聊聊有關(guān)Angular中父子組件間如何進(jìn)行通信,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
創(chuàng)新互聯(lián)建站專注于孟村網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供孟村營銷型網(wǎng)站建設(shè),孟村網(wǎng)站制作、孟村網(wǎng)頁設(shè)計、孟村網(wǎng)站官網(wǎng)定制、成都微信小程序服務(wù),打造孟村網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供孟村網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
通過Input和Ouput傳值
父組件:html和ts
public name: string = "jack"; public changeName(value: string) { this.name = value; }
子組件:html和ts
{{name}}
import { Component, Input, EventEmitter, Output } from '@angular/core'; @Input() name: string; @Output() changeName: EventEmitter= new EventEmitter (); public emit() { this.changeName.emit("修改name屬性"); }
通過setter監(jiān)聽屬性的變化
父組件同上,子組件:
private _name: string = ""; @Input() public get name(): string { return this._name; } public set name(value: string) { this._name = value + "定義結(jié)構(gòu)"; }
通過ngOnChanges鉤子函數(shù)監(jiān)聽輸入屬性的變化
ngOnChanges在監(jiān)聽多個屬性的時候,要比setter的方式簡便一些。
@Input() name: string; ngOnChanges(changes: SimpleChanges): void { (({name}) => { console.log(name.currentValue,name.previousValue); })(changes); }
父組件html中通過模板變量調(diào)用子組件的方法和屬性。
模板變量獲取了子組件的一個引用。 父組件:
子組件:
public childFn() { console.log("通過模板變量調(diào)用子組件中的方法"); }
父組件通過ViewChild獲取子組件實例
@ViewChild("child") child: LiftcycleComponent; public childFn(): void { this.child.childFn(); }
通過service進(jìn)行通信
service:
import { Subject } from 'rxjs'; import { Injectable } from '@angular/core'; @Injectable({ providedIn: 'root' }) export class CommunService { constructor() {} public commun = new Subject(); 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)}); }
父組件傳遞方法
父組件通過屬性傳遞給子組件方法,子組件進(jìn)行調(diào)用,一般不推薦,React采用這種通信方式。 可能是基于this的綁定錯綜復(fù)雜,所以angular不太推薦。React Hooks的出現(xiàn)也有一部分原因 是class類的this錯綜復(fù)雜。 父組件:
public name: string = "jack"; public send(): void { console.log(this.name); }
子組件:
@Input() send: Function; public childSend() { this.send(); }
看完上述內(nèi)容,你們對Angular中父子組件間如何進(jìn)行通信有進(jìn)一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。