给数组里面的每一个对象里添加一个新的数组

1.背景

 如图,大表格中的每一项展开后都嵌套了一个小表格,但是在后端返回的数据中大表格中并没有小表格的数据,所以需要手动将小表格中的数据添加到大表格中。

2.思路

(1)首先 将后端返回的大表格的List的每一项都加上一个空的数组(childTable)

    searchFilesByClickBtn (levelType) {
      this.$http({
        url: this.$http.adornUrl('/liaoning/northeastPointsCyc/listNortheastPoints'),
        method: 'post',
        data: {
          pageNum: 1,
          pageSize: 20
        }
      }).then(res => {
        const {
          data: { code, msg, result }
        } = res
        if (code == 200) {
        //给List的每一项都添加一个空的数组对象
          res.data.result.list.forEach((item) => {
            item.childTable = []
          })
        }
      })
    },

 (2)将后端返回的小表格中的数据,依次添加到大表格中

    taskViewOne (row) {
      console.log(row)
      this.$http({
        url: this.$http.adornUrl('/liaoning/northeastPointsCyc/listPointsOver'),
        method: 'get',
        params: { northeastPointsId: row.id}
      }).then(res => {
        const {
          data: { code, msg, result }
        } = res
        if (code == 200) {
          row.childTable = res.data.result
        }
      })
    },

小表格的接口数据是通过点击大表格后得到大表格的row.id作为参数来请求到的,row代表的是所点击的大表格的一列,将请求到的数据添加到大表格中对应的列中

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值