返回数据中字段的值为什么会变化

数据中advertiseStatus字段的值为什么会变化?
将1转为false部分已经注释了.

    .then(data => {
        if (data.success) {
          console.log('tableData[0]:', this.tableData[0])
          console.log('tableData[0].ad:', this.tableData[0].advertiseStatus)
          console.log('tableData[1].ad:', this.tableData[1].advertiseStatus)
          // this.tableData.forEach(i => {
          //   if (i.advertiseStatus === '0') {
          //     i.advertiseStatus = true
          //   } else {
          //     i.advertiseStatus = false
          //   }
          // })
        }
      })

1.chrome输出展开前:

2.chrome输出展开后:

阅读 1k
1 个回答

你能确定两次输出之间没有其他操作吗,调试不按顺序神仙也解决不了

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题