Vue3 getters打印结果是Proxy对象,怎么获取其中的值?
看起来标红的地方应该是赋值成功的,但是是proxy对象,里面那个[[Target]]就是真实对象。// 被勾选的pitchOn (val) {console.log(val) // 打印结果是一个Proxy对象console.log(JSON.parse(JSON.stringify(val))) // 序列化后可以取值const newVal = JSON.parse(JSON.stringif
·
看起来标红的地方应该是赋值成功的,但是是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))
打印结果:
更多推荐
已为社区贡献1条内容
所有评论(0)