#鸿蒙通关秘籍#如何避免在鸿蒙开发中使用状态变量强行更新组件?

HarmonyOS
2天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
雪域寻踪BIOS

在ArkUI中,避免使用自定义UI状态变量来更新与非状态变量关联的组件,而应该使用框架的状态管理机制。通过使用@State装饰器,将需要更新的变量转化为状态变量,以自然触发UI更新。

@Entry
@Component
struct CompA {
  @State realState1: Array<number> = [4, 1, 3, 2];
  @State realState2: Color = Color.Yellow;

  build() {
    Column({ space: 20 }) {
      ForEach(this.realState1, (item: Array<number>) => {
        Text(`${item}`)
      })
      Text("add item")
        .onClick(() => {
          this.realState1.push(this.realState1[this.realState1.length-1] + 1);
        })
      Text("chg color")
        .onClick(() => {
          this.realState2 = this.realState2 == Color.Yellow ? Color.Red : Color.Yellow;
        })
    }.backgroundColor(this.realState2)
    .width(200).height(500)
  }
}
分享
微博
QQ
微信
回复
2天前
相关问题
状态变量和常规变量有什么区别?
419浏览 • 2回复 待解决
ArkTS中如何监听状态变量的变化?
929浏览 • 1回复 待解决
HarmonyOS 状态变量不刷新问题
382浏览 • 1回复 待解决
关于状态变量@state必须知道的事
1063浏览 • 1回复 待解决