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

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

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

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

 

 

 
// 被勾选的
    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))

打印结果:

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

 

上一篇:20.spring源码之@Bean注解


下一篇:【问题总结(19)】this.xxx与xxx, JSON.stringify([data]),JSON.parse(),_ob _: Observer