1 个回答

可以使用 @State 装饰器。如果属性的值会影响UI,并且需要在组件内部修改,应该使用 @State 代替 private:

@Entry
@Component
struct MyComponent {
  @State count: number = 0; // 使用 @State 使其变成响应式数据

  constructor() {
    this.count = 10; // 这里赋值有效,因为 @State 是响应式的
  }

  render() {
    Column() {
      Text(`Count: ${this.count}`) // UI 会正确更新
      Button("Increase")
        .onClick(() => {
          this.count += 1; // 修改 @State 变量,UI 自动更新
        })
    }
  }
}
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题