iveiw Table 组件在数据变更后,视图不改变

问题描述

在这里插入图片描述
如上图,我想通过操作右边的按钮来操作表格里的数据(上移,下移,删除)。上移和下移的代码如下:

  moveUp (index) {
      console.log(index)
      if (index === 0) {
        return true
      }
      const temObj = this.data1
      const tem = temObj[index - 1]
      temObj[index - 1] = temObj[index]
      temObj[index] = tem
    },
    moveDown (index) {
      const temObj = this.data1
      if (index === temObj.length - 1) {
        return true
      }
      const tem = temObj[index + 1]
      temObj[index + 1] = temObj[index]
      temObj[index] = tem
    }

可是结果发现,当单击上移和下移的按钮后,数据的顺序变了,但是视图没有变动。

解决办法

变更顺序后,增加this.data1.splice(0, 0),这样一个操作。
变更后代码如下:

moveUp (index) {
      console.log(index)
      if (index === 0) {
        return true
      }
      const temObj = this.data1
      const tem = temObj[index - 1]
      temObj[index - 1] = temObj[index]
      temObj[index] = tem
      this.data1.splice(0, 0)
    },
    moveDown (index) {
      const temObj = this.data1
      if (index === temObj.length - 1) {
        return true
      }
      const tem = temObj[index + 1]
      temObj[index + 1] = temObj[index]
      temObj[index] = tem
      this.data1.splice(0, 0)
    }

先到这里了,希望疫情早点过去

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值