HarmonyOS 关于状态管理

​@Local装饰的变量,使用ForEach时,将数组项传给子组件报错,请见附件截图。

@Trace可以修饰Resource或者ResourceColor类型的属性吗?

@Event的作用是什么?直接往子组件传入回调,不使用@Event,子组件调用回调,也能修改父组件状态呀。​

HarmonyOS
2024-11-26 10:10:33
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
shlp

参考demo:

@Entry 
@ComponentV2 
struct Index { 
  @Local numArr: number[] = [1,2,3,4,5]; 
 
  build() { 
    Column() { 
      ForEach(this.numArr, (item: number) =>{ 
        VideDemo({num: item}) 
      }) 
    } 
  } 
} 
@ComponentV2 
struct VideDemo { 
  num: number = 0; 
  build() { 
    Row(){ 
      Text("hahha:" + this.num) 
    } 
  } 
}
@ObservedV2 
class Info { 
  @Trace name: string; 
  @Trace age: Resource = $r('app.media.startIcon') 
  constructor(name: string, age: Resource) { 
    this.name = name; 
    this.age = age; 
  } 
} 
@Entry 
@ComponentV2 
struct Index { 
  @Local info: Info = new Info("Tom", $r('app.media.background')); 
  build() { 
    Column() { 
      Text(`Parent info.name ${this.info.name}`) 
      Image(this.info.age) 
        .width(40) 
        .height(40) 
    } 
  } 
}

​为了实现子组件向父组件要求更新@Param装饰变量的能力,开发者可以使用@Event装饰器。参考文档:​https://developer.huawei.com/consumer/cn/doc/harmonyos-guides-V5/arkts-new-event-V5

分享
微博
QQ
微信
回复
2024-11-26 15:02:53
相关问题
HarmonyOS 状态管理咨询
360浏览 • 1回复 待解决
HarmonyOS 关于@Watch监听状态问题
454浏览 • 1回复 待解决
HarmonyOS 关于ArkUI中状态栏的问题
323浏览 • 1回复 待解决
状态管理相关问题,有人知道吗?
657浏览 • 1回复 待解决
关于状态变量@state必须知道的事
1134浏览 • 1回复 待解决