参考示例代码:@Entry @Component struct ListItemDemo { @State message: string = 'Hello World'; @State list: number[] = [] aboutToAppear(): void { this.list.push(1) this.list.push(2) this.list.push(3) } updateItem(){ this.list[1]++ } build() { Column() { Button('更改数据') .onClick(() => { this.updateItem() }) List(){ ForEach(this.list, (item:number) => { ListItem(){ Row(){ Text(item+ '') } } }) } } .height('100%') .width('100%') } }
参考示例代码: