• 微信小程序 动态修改数组数据方法


    数据demo:

    tabListLocal: [ // typeLocal主要是和后台数据进行对应匹配
          { currentTab: 0, title: '全部',   typeLocal:0,  total: 0, modelCode:'allReports',list:[] },
          { currentTab: 1, title: '待分配', typeLocal: 7, total: 0, modelCode: 'tobeAssign', list: [] },
          { currentTab: 2, title: '待接单', typeLocal: 8, total: 0, modelCode: 'tobeAccept', list: [] },
          { currentTab: 3, title: '待处理', typeLocal: 9, total: 0, modelCode: 'tobeHandle', list: [] },
          { currentTab: 4, title: '待评论', typeLocal: 10, total: 0, modelCode: 'tobeAssess', list: []}],

    由于list的数据是动态的,需要接口查询返回,因此需要遍历数据,并动态修改数据。

    根据不同的状态去遍历查询该状态下的数据列表,把返回的接口数据赋值到list属性。

     this.data.myWorkOrderList.forEach((item,index) =>{
          getRepairOrderList(item.typeLocal).then(rsp => {
            if (rsp.status === 200) {
              this.setData({
                [`myWorkOrderList[${index}].list`] : rsp.data
              })
            }
          })
        })

    动态赋值方法有2种:

    方式一:使用es6语法

    [`myWorkOrderList[${index}].list`] : rsp.data

    方式二:整体赋值

      大概意思就是,先修改值,再重新setData一次让其生效。

     // 清空上传的图片
      clearImg(e) {
        const index = e.currentTarget.dataset.index
        // 使用整体赋值的方法进行修改
        this.data.repairImageAry.splice(index, 1); 
        this.setData({
          repairImageAry: this.data.repairImageAry
        })
      },
    

      

  • 相关阅读:
    nat
    ICE协议下NAT穿越的实现(STUN&TURN)
    比特币源码分析--端口映射
    IO复用,AIO,BIO,NIO,同步,异步,阻塞和非阻塞 区别(百度)
    从数据的角度带你深入了解IPFS
    IPFS 到底是怎么工作的?
    从数据的角度带你深入了解IPFS
    IPFS
    IPFS中文简介
    bootstrap 表单验证 dem
  • 原文地址:https://www.cnblogs.com/luoxuemei/p/12767610.html
Copyright © 2020-2023  润新知