HarmonyOS @State对一个列表进行配置,列表中是对象bean,bean中的参数变化了如何通知ui刷新

HarmonyOS
2025-01-09 17:00:35
浏览
收藏 0
回答 1
回答 1
按赞同
/
按时间
Heiang

参考示例如下:

@Observed
export class PlateColorItem {
  id: string = '';
  isSelected: boolean = false;
  selectedColor: Color | string = ''
  title: string = ''

  constructor(id: string, isSelected: boolean = false, selectedColor: Color | string, title: string,) {
    this.id = id;
    this.isSelected = isSelected;
    this.selectedColor = selectedColor;
    this.title = title;
  }
}

@Entry
@Component
struct Index {
  @State message: string = 'Hello World';
  @State
  plateColorItems: PlateColorItem[] = [
    new PlateColorItem('1', false, Color.Blue, '蓝牌'),
    new PlateColorItem('2', false, '#33E099', '绿牌'),
    new PlateColorItem('3', false, Color.Orange, '黄牌'),
    new PlateColorItem('4', false, '#12CCC0', '其他'),
  ];

  build() {
    Column() {
      test({ test: this.plateColorItems[3] })
    }
  }
}

@Component
struct test {
  @ObjectLink test: PlateColorItem

  build() {
    Text('hhhhh')
      .fontSize(px2vp(50))//.lineHeight(px2vp(54))
      .width(px2vp(200))
      .height(px2vp(114))
      .borderRadius(px2vp(7))
      .backgroundColor(this.test.isSelected ? Color.Orange : Color.Blue)
      .textAlign(TextAlign.Center)
      .onClick(() => {
        this.test.isSelected = true;
        // console.log("ddd"+this.plateColorItems);
      })
  }
}
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.
  • 47.
  • 48.
  • 49.
  • 50.
  • 51.
  • 52.

如果嵌套层级很深,建议用@ObservedV2装饰器和@Trace装饰器。

分享
微博
QQ
微信
回复
2025-01-09 19:00:28


相关问题
HarmonyOS Bean对象如何删除对应key
643浏览 • 1回复 待解决
HarmonyOS 通知列表刷新事件
631浏览 • 1回复 待解决
HarmonyOS list嵌套tab列表高度变化
537浏览 • 1回复 待解决
如何一个文件进行读写操作
1174浏览 • 1回复 待解决
编写一个页面,实现不规则列表
1171浏览 • 1回复 待解决
HarmonyOS 实现一个自定义分类列表
1011浏览 • 1回复 待解决