HarmonyOS @Watch装饰器,能监听对象中某个属性的变化值吗?

HarmonyOS
5h前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
Heiang
@Entry
@Component
struct testPage {
  @State @Watch('change') person: Person = new Person('Peppa', 25, 'male')
  @State message: string = 'Hello World';
  @State nameTemp: string = this.person.name
  @State ageTemp: number = this.person.age
  @State genderTemp: string = this.person.gender

  //
  change() {
    // console.log(`信息改变了:${JSON.stringify(this.person)}`)
    if (this.nameTemp !== this.person.name) {
      console.log(`名字信息改变了:${JSON.stringify(this.person.name)}`)
      //处理名字属性改变的逻辑/调用相关方法
    }
    if (this.ageTemp !== this.person.age) {
      console.log(`年龄信息改变了:${JSON.stringify(this.person.age)}`)
      //处理年龄属性改变的逻辑/调用相关方法
    }
    if (this.genderTemp !== this.person.gender) {
      console.log(`性别信息改变了:${JSON.stringify(this.person.gender)}`)
      //处理性别属性改变的逻辑/调用相关方法
    }

  }

  build() {
    Column({ space: 10 }) {
      Text(`当前信息:${JSON.stringify(this.person)}`)
      Button() {
        Text('11点击一下')
      }.type(ButtonType.Capsule).padding({ left: 5, right: 5 }).onClick(() => {
        let person = new Person('Utopia', 25, 'female')
        this.person = person
      })

    }
    .width('100%')
    .height('100%')
    .justifyContent(FlexAlign.Center)
  }
}


class Person {
  constructor(name: string, age: number, gender: string) {
    this.name = name;
    this.age = age;
    this.gender = gender;
  }

  name: string
  age: number
  gender: string
}
分享
微博
QQ
微信
回复
2h前
相关问题
如何监听数组内对象属性变化
2341浏览 • 1回复 待解决
@Watch装饰回调执行顺序
301浏览 • 1回复 待解决
如何判断JS对象是否存在某个
2314浏览 • 1回复 待解决
HarmonyOS判断Object是否含有某个属性
949浏览 • 1回复 待解决
HarmonyOS 关于@Watch监听状态问题
457浏览 • 1回复 待解决