真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

angular組件通訊和組件生命周期是什么

本文小編為大家詳細(xì)介紹“angular組件通訊和組件生命周期是什么”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“angular組件通訊和組件生命周期是什么”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學(xué)習(xí)新知識(shí)吧。

成都創(chuàng)新互聯(lián)公司于2013年開始,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目成都做網(wǎng)站、成都網(wǎng)站設(shè)計(jì)網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢想脫穎而出為使命,1280元千陽做網(wǎng)站,已為上家服務(wù),為千陽各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話:13518219792

angular組件通訊和組件生命周期是什么

組件通訊


1、向組件內(nèi)部傳遞數(shù)據(jù)

// favorite.component.ts
import { Input } from '@angular/core';
export class FavoriteComponent {
    @Input() isFavorite: boolean = false;
}

注意:在屬性的外面加 [] 表示綁定動(dòng)態(tài)值,在組件內(nèi)接收后是布爾類型,不加 [] 表示綁定普通值,在組件內(nèi)接收后是字符串類型。

import { Input } from '@angular/core';

export class FavoriteComponent {
  @Input("is-Favorite") isFavorite: boolean = false
}

2、組件向外部傳遞數(shù)據(jù)

需求:在子組件中通過點(diǎn)擊按鈕將數(shù)據(jù)傳遞給父組件


click
// 子組件類
import { EventEmitter, Output } from "@angular/core"

export class FavoriteComponent {
  @Output() change = new EventEmitter()
  onClick() {
    this.change.emit({ name: "張三" })
  }
}

// 父組件類
export class AppComponent {
  onChange(event: { name: string }) {
    console.log(event)
  }
}

組件生命周期


angular組件通訊和組件生命周期是什么

1、掛載階段

掛載階段的生命周期函數(shù)只在掛載階段執(zhí)行一次,數(shù)據(jù)更新時(shí)不再執(zhí)行。

1)、constructor

Angular 在實(shí)例化組件類時(shí)執(zhí)行, 可以用來接收 Angular 注入的服務(wù)實(shí)例對(duì)象。

export class ChildComponent {
  constructor (private test: TestService) {
    console.log(this.test) // "test"
  }
}

2)、ngOnInit

在首次接收到輸入屬性值后執(zhí)行,在此處可以執(zhí)行請求操作。

export class ChildComponent implements OnInit {
  @Input("name") name: string = ""
  ngOnInit() {
    console.log(this.name) // "張三"
  }
}

3)、ngAfterContentInit

當(dāng)內(nèi)容投影初始渲染完成后調(diào)用。


	Hello Angular
export class ChildComponent implements AfterContentInit {
  @ContentChild("box") box: ElementRef | undefined

  ngAfterContentInit() {
    console.log(this.box) // 
Hello Angular
  } }

4)、ngAfterViewInit

當(dāng)組件視圖渲染完成后調(diào)用。


app-child works

export class ChildComponent implements AfterViewInit {
  @ViewChild("p") p: ElementRef | undefined
  ngAfterViewInit () {
    console.log(this.p) // 

app-child works

  } }

2、更新階段

1)、ngOnChanges

基本數(shù)據(jù)類型值變化


change
export class AppComponent {
  name: string = "張三";
  age: number = 20
  change() {
    this.name = "李四"
    this.age = 30
  }
}
export class ChildComponent implements OnChanges {
  @Input("name") name: string = ""
  @Input("age") age: number = 0

  ngOnChanges(changes: SimpleChanges) {
    console.log("基本數(shù)據(jù)類型值變化可以被檢測到")
  }
}

引用數(shù)據(jù)類型變化


change
export class AppComponent {
  person = { name: "張三", age: 20 }
  change() {
    this.person = { name: "李四", age: 30 }
  }
}
export class ChildComponent implements OnChanges {
  @Input("person") person = { name: "", age: 0 }

  ngOnChanges(changes: SimpleChanges) {
    console.log("對(duì)于引用數(shù)據(jù)類型, 只能檢測到引用地址發(fā)生變化, 對(duì)象屬性變化不能被檢測到")
  }
}

2)、ngDoCheck:主要用于調(diào)試,只要輸入屬性發(fā)生變化,不論是基本數(shù)據(jù)類型還是引用數(shù)據(jù)類型還是引用數(shù)據(jù)類型中的屬性變化,都會(huì)執(zhí)行。

3)、ngAfterContentChecked:內(nèi)容投影更新完成后執(zhí)行。

4)、ngAfterViewChecked:組件視圖更新完成后執(zhí)行。

3、卸載階段

1)、ngOnDestroy

當(dāng)組件被銷毀之前調(diào)用, 用于清理操作。

export class HomeComponent implements OnDestroy {
  ngOnDestroy() {
    console.log("組件被卸載")
  }
}

讀到這里,這篇“angular組件通訊和組件生命周期是什么”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識(shí)點(diǎn)還需要大家自己動(dòng)手實(shí)踐使用過才能領(lǐng)會(huì),如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


新聞標(biāo)題:angular組件通訊和組件生命周期是什么
本文來源:http://weahome.cn/article/jdijoc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部