HarmonyOS 对象数组在使用@Observed和@ObjectLink驱动子组件UI更新时的问题

列表页面数据源是stationsArray: StationModel[]数组里面存放的是class对象,列表里的子组件数据通过ObjectLink做数据关联。想要的效果是在子组件中改变ObjectLink修饰的class对象数据,子组件UI能跟着改变。stationsArray是通过网络拿到,通过JSON.parse转化过来的,无法达到预期效果。

HarmonyOS
1天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
zxjiu

class类对象必须是要new出来的,属性的变化才能触发UI刷新。针对发送网络请求得到的json字符串解析后无法刷新的问题,可以通过引入三方库reflect-metadata和class-transformer来解决,参考示例如下:

import { promptAction } from '@kit.ArkUI';
import { plainToClass, Type } from 'class-transformer';
import 'reflect-metadata';

@Entry
@Component
struct Index {
  @State message: string = 'Hello World';
  @State list: Person[] = [new Person('Peppa1', '12'), new Person('Peppa2', '12'), new Person('Peppa3', '12')]
  @State list2: Person[] = []

  aboutToAppear(): void {
    let responseObjRaw: ResponseObj = new ResponseObj();
    //模拟从接口获取数据
    responseObjRaw.data = this.list
    console.log(`拟从接口获取数据,字段为data,值为:${JSON.stringify(responseObjRaw)}`)
    let responseObj: ResponseObj = plainToClass(ResponseObj, responseObjRaw);
    this.list2 = this.list.concat(responseObj.data);
    console.log(`aboutToAppear ${JSON.stringify(this.list2)}`)
  }

  build() {
    Column() {
      List() {
        ForEach(this.list2, (item: Person) => {
          ListItem() {
            TestComp({ item: item })
          }
        }, (item: Person) => JSON.stringify(item.name))
      }
    }.width('100%').height('100%').justifyContent(FlexAlign.Center)
  }
}

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

@Component
struct TestComp {
  @ObjectLink
  item: Person
  @State @Watch('change') num: number = 0

  change() {
    promptAction.showToast({ message: `:${JSON.stringify(this.num)}` })
  }

  build() {
    Column() {
      Text(JSON.stringify(this.num))
      Text(JSON.stringify(this.item))
      Text(this.item.name)
        .backgroundColor(Color.Red)
        .width('100%')
        .textAlign(TextAlign.Center)
        .onClick(() => {
          this.item.name = Date.now().toString()
          this.num = this.num + 1
          console.log(`num: ${this.num}`);
          console.log(`item: ${JSON.stringify(this.item)}`);
        })
    }.justifyContent(FlexAlign.Center)
  }
}

class ResponseObj {
  @Type(() => Person)
  data: Person[] = [];
}
可以使用ohpm 引入三方库
ohpm install class-transformer
ohpm install reflect-metadata
分享
微博
QQ
微信
回复
21h前
相关问题
ObserveObjectLink 使用
282浏览 • 1回复 待解决