Arrow function should not return assignment

 // 选中所有或反选
    changeAll() {
      // 判断是否已经全选,如果全选则让每一项为false
      let flag = this.goodsList.every(item => item.isChecked === true)
      if (flag) {
        this.goodsList.forEach(item => item.isChecked = false)
      } else {
        this.goodsList.forEach(item => item.isChecked = true)
      }
      // 将改变后的结果存放到存储中
      this.setShopList()
      this.getCount()
      this.getMoney()
    }

各种尝试之后发现遍历时如果是改变了原属组的内容就会报错,而我需要的就是改变原数组,暂时还没解决,找到方法再来
Arrow function should not return assignment_第1张图片

你可能感兴趣的:(微信小程序wepy,bug,前端)