当前位置:   article > 正文

09-鸿蒙4.0学习之ForEach循环渲染_鸿蒙foreach

鸿蒙foreach

09-鸿蒙4.0学习之ForEach循环渲染

代码

/**
 * 循环渲染
 * todo:重点注意键值生成器返回的数据,保证唯一性,否则某些相同的数据会渲染不出来
 *
 */
@Entry
@Component
struct Loop {
  @State message: string = '循环渲染'
  @State product:string[] = ['第一项','第二项','第三项','第四项','第四项']
  @State arrList:object[]=[
    {
      id:'001',
      title:'hellworld1',
      content:'内容1'
    },
    {
      id:'002',
      title:'hellworld2',
      content:'内容2'
    },
    {
      id:'003',
      title:'hellworld3',
      content:'内容3'
    }
  ]
  build() {
    Row() {
      Column() {
        Text(this.message)
          .fontSize(50)
          .fontWeight(FontWeight.Bold)
        Divider()
        ForEach(this.arrList,(item)=>{
          Text(item.content).fontSize(30)
        },(item)=>{
          return item.id  // 返回值为 字符串 表示唯一性  类似于ID
        })
      }
      .width('100%')
    }
    .height('100%')
  }
}
  • 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
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号