Vue3 getters打印结果是Proxy对象,怎么获取其中的值?

原链接:https://blog.csdn.net/weixin_58347102/article/details/117044108

看起来标红的地方应该是赋值成功的,但是是proxy对象,里面那个 [[Target]] 就是真实对象。

 

 

 
// 被勾选的
    pitchOn (val) {
      console.log(val) // 打印结果是一个Proxy对象
      console.log(JSON.parse(JSON.stringify(val))) // 序列化后可以取值
      const newVal = JSON.parse(JSON.stringify(val))
      this.result = newVal
      this.removeID = []
      this.result.forEach((v) => {
        this.removeID.push(v.id)
      })
      console.log(JSON.parse(JSON.stringify(this.removeID)))
 

序列化后即可取值:JSON.parse(JSON.stringify(val))

打印结果:

 

posted @ 2021-08-30 00:46  前端HL  阅读(1153)  评论(0编辑  收藏  举报