W3Cschool
恭喜您成為首批注冊(cè)用戶(hù)
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
子組件中被@Link裝飾的變量與其父組件中對(duì)應(yīng)的數(shù)據(jù)源建立雙向數(shù)據(jù)綁定。
從API version 9開(kāi)始,該裝飾器支持在ArkTS卡片中使用。
@Link變量裝飾器 | 說(shuō)明 |
---|---|
裝飾器參數(shù) | 無(wú) |
同步類(lèi)型 | 雙向同步。 父組件中@State, @StorageLink和@Link 和子組件@Link可以建立雙向數(shù)據(jù)同步,反之亦然。 |
允許裝飾的變量類(lèi)型 | Object、class、string、number、boolean、enum類(lèi)型,以及這些類(lèi)型的數(shù)組。嵌套類(lèi)型的場(chǎng)景請(qǐng)參考觀(guān)察變化。 類(lèi)型必須被指定,且和雙向綁定狀態(tài)變量的類(lèi)型相同。 不支持any,不支持簡(jiǎn)單類(lèi)型和復(fù)雜類(lèi)型的聯(lián)合類(lèi)型,不允許使用undefined和null。 說(shuō)明 不支持Length、ResourceStr、ResourceColor類(lèi)型,Length、ResourceStr、ResourceColor為簡(jiǎn)單類(lèi)型和復(fù)雜類(lèi)型的聯(lián)合類(lèi)型。 |
被裝飾變量的初始值 | 無(wú),禁止本地初始化。 |
傳遞/訪(fǎng)問(wèn) | 說(shuō)明 |
---|---|
從父組件初始化和更新 | 必選。與父組件@State, @StorageLink和@Link 建立雙向綁定。允許父組件中@State、@Link、@Prop、@Provide、@Consume、@ObjectLink、@StorageLink、@StorageProp、@LocalStorageLink和@LocalStorageProp裝飾變量初始化子組件@Link。 從API version 9開(kāi)始,@Link子組件從父組件初始化@State的語(yǔ)法為Comp({ aLink: this.aState })。同樣Comp({aLink: $aState})也支持。 |
用于初始化子組件 | 允許,可用于初始化常規(guī)變量、@State、@Link、@Prop、@Provide。 |
是否支持組件外訪(fǎng)問(wèn) | 私有,只能在所屬組件內(nèi)訪(fǎng)問(wèn)。 |
@Link裝飾的變量和其所屬的自定義組件共享生命周期。
為了了解@Link變量初始化和更新機(jī)制,有必要先了解父組件和擁有@Link變量的子組件的關(guān)系,初始渲染和雙向更新的流程(以父組件為@State為例)。
以下示例中,點(diǎn)擊父組件ShufflingContainer中的“Parent View: Set yellowButton”和“Parent View: Set GreenButton”,可以從父組件將變化同步給子組件。
1.點(diǎn)擊子組件GreenButton和YellowButton中的Button,子組件會(huì)發(fā)生相應(yīng)變化,將變化同步給父組件。因?yàn)锧Link是雙向同步,會(huì)將變化同步給@State。
2.當(dāng)點(diǎn)擊父組件ShufflingContainer中的Button時(shí),@State變化,也會(huì)同步給@Link,子組件也會(huì)發(fā)生對(duì)應(yīng)的刷新。
- class GreenButtonState {
- width: number = 0;
- constructor(width: number) {
- this.width = width;
- }
- }
- @Component
- struct GreenButton {
- @Link greenButtonState: GreenButtonState;
- build() {
- Button('Green Button')
- .width(this.greenButtonState.width)
- .height(40)
- .backgroundColor('#64bb5c')
- .fontColor('#FFFFFF,90%')
- .onClick(() => {
- if (this.greenButtonState.width < 700) {
- // 更新class的屬性,變化可以被觀(guān)察到同步回父組件
- this.greenButtonState.width += 60;
- } else {
- // 更新class,變化可以被觀(guān)察到同步回父組件
- this.greenButtonState = new GreenButtonState(180);
- }
- })
- }
- }
- @Component
- struct YellowButton {
- @Link yellowButtonState: number;
- build() {
- Button('Yellow Button')
- .width(this.yellowButtonState)
- .height(40)
- .backgroundColor('#f7ce00')
- .fontColor('#FFFFFF,90%')
- .onClick(() => {
- // 子組件的簡(jiǎn)單類(lèi)型可以同步回父組件
- this.yellowButtonState += 40.0;
- })
- }
- }
- @Entry
- @Component
- struct ShufflingContainer {
- @State greenButtonState: GreenButtonState = new GreenButtonState(180);
- @State yellowButtonProp: number = 180;
- build() {
- Column() {
- Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center }) {
- // 簡(jiǎn)單類(lèi)型從父組件@State向子組件@Link數(shù)據(jù)同步
- Button('Parent View: Set yellowButton')
- .width(312)
- .height(40)
- .margin(12)
- .fontColor('#FFFFFF,90%')
- .onClick(() => {
- this.yellowButtonProp = (this.yellowButtonProp < 700) ? this.yellowButtonProp + 40 : 100;
- })
- // class類(lèi)型從父組件@State向子組件@Link數(shù)據(jù)同步
- Button('Parent View: Set GreenButton')
- .width(312)
- .height(40)
- .margin(12)
- .fontColor('#FFFFFF,90%')
- .onClick(() => {
- this.greenButtonState.width = (this.greenButtonState.width < 700) ? this.greenButtonState.width + 100 : 100;
- })
- // class類(lèi)型初始化@Link
- GreenButton({ greenButtonState: $greenButtonState }).margin(12)
- // 簡(jiǎn)單類(lèi)型初始化@Link
- YellowButton({ yellowButtonState: $yellowButtonProp }).margin(12)
- }
- }
- }
- }
- @Component
- struct Child {
- @Link items: number[];
- build() {
- Column() {
- Button(`Button1: push`)
- .margin(12)
- .width(312)
- .height(40)
- .fontColor('#FFFFFF,90%')
- .onClick(() => {
- this.items.push(this.items.length + 1);
- })
- Button(`Button2: replace whole item`)
- .margin(12)
- .width(312)
- .height(40)
- .fontColor('#FFFFFF,90%')
- .onClick(() => {
- this.items = [100, 200, 300];
- })
- }
- }
- }
- @Entry
- @Component
- struct Parent {
- @State arr: number[] = [1, 2, 3];
- build() {
- Column() {
- Child({ items: $arr })
- .margin(12)
- ForEach(this.arr,
- (item: void) => {
- Button(`${item}`)
- .margin(12)
- .width(312)
- .height(40)
- .backgroundColor('#11a2a2a2')
- .fontColor('#e6000000')
- },
- (item: ForEachInterface) => item.toString()
- )
- }
- }
- }
上文所述,ArkUI框架可以觀(guān)察到數(shù)組元素的添加,刪除和替換。在該示例中@State和@Link的類(lèi)型是相同的number[],不允許將@Link定義成number類(lèi)型(@Link item : number),并在父組件中用@State數(shù)組中每個(gè)數(shù)據(jù)項(xiàng)創(chuàng)建子組件。如果要使用這個(gè)場(chǎng)景,可以參考@Prop和@Observed。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話(huà):173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: