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

HarmonyOS
5天前
浏览
收藏 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);
      })
  }
}

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

分享
微博
QQ
微信
回复
5天前
相关问题
HarmonyOS Bean对象如何删除对应key
273浏览 • 1回复 待解决
HarmonyOS 通知列表刷新事件
257浏览 • 1回复 待解决
HarmonyOS list嵌套tab列表高度变化
58浏览 • 1回复 待解决
编写一个页面,实现不规则列表
891浏览 • 1回复 待解决
如何一个文件进行读写操作
718浏览 • 1回复 待解决
HarmonyOS 实现一个自定义分类列表
509浏览 • 1回复 待解决
HarmonyOS 懒加载列表更改属性UI刷新
197浏览 • 1回复 待解决