可以使用 @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 自动更新 }) } } }
可以使用
@State
装饰器。如果属性的值会影响UI,并且需要在组件内部修改,应该使用@State
代替 private: