91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Angular中父子組件間如何進行通信

發布時間:2021-08-10 11:12:08 來源:億速云 閱讀:206 作者:Leah 欄目:web開發

今天就跟大家聊聊有關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中父子組件間如何進行通信有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

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

AI

鹿泉市| 永春县| 汶川县| 上虞市| 吉木萨尔县| 双牌县| 曲阜市| 临邑县| 镇宁| 湟源县| 盐亭县| 宁南县| 河北省| 庆城县| 金寨县| 德昌县| 金堂县| 高阳县| 龙海市| 淮滨县| 合江县| 潼关县| 观塘区| 陕西省| 横山县| 扎赉特旗| 彭山县| 肥城市| 兴仁县| 邮箱| 通道| 开鲁县| 连云港市| 新昌县| 玛纳斯县| 文安县| 读书| 垦利县| 郑州市| 汽车| 富蕴县|