我们在HarmonyOS开发中,如何实现状态管理?

阅读 621
1 个回答

状态管理是现代应用开发中的一个核心问题。在ArkTS中,你可以使用@State装饰器来管理组件的状态。

@Entry
@Component
struct Index {
  @State count: number = 0;

  increment() {
    this.count += 1;
  }

  decrement() {
    this.count -= 1;
  }

  build() {
    Column() {
      Text(`Count: ${this.count}`)
        .fontSize(30)
        .fontWeight(FontWeight.Bold)
      
      Button('Increment')
        .onClick(() => {
          this.increment();
        })
        .width('100%')
        .height(100)
      
      Button('Decrement')
        .onClick(() => {
          this.decrement();
        })
        .width('100%')
        .height(100)
    }
    .width('100%')
    .height('100%')
  }
}

count状态被用来跟踪计数器的值,increment和decrement方法用来更新这个状态。

参见:https://developer.huawei.com/consumer/cn/doc/harmonyos-guides...

本文参与了 【 HarmonyOS NEXT 技术问答冲榜,等你来战!】欢迎正在阅读的你也加入。

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进