Vue3 getters打印结果是Proxy对象,怎么获取其中的值?
2021/8/30 6:07:51
本文主要是介绍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))
打印结果:
这篇关于Vue3 getters打印结果是Proxy对象,怎么获取其中的值?的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-29如何在 Vue2 的 uni-app 项目中使用 npm ?-icode9专业技术文章分享
- 2024-12-29uni-app vue2微信小程序项目在哪里打开终端并使用npm?-icode9专业技术文章分享
- 2024-12-29怎么在 uni-app Vue2 项目中全局引入 Vant Weapp?-icode9专业技术文章分享
- 2024-12-29uni-app vue2微信小程序项目如何在main.js中全局引入vant?-icode9专业技术文章分享
- 2024-12-28Vue入门教程:从零开始搭建第一个Vue项目
- 2024-12-28Vue CLI入门指南:快速搭建Vue项目
- 2024-12-28Vue3基础知识入门教程
- 2024-12-28Vue3公共组件开发与使用入门教程
- 2024-12-28Vue CLI学习:新手入门教程
- 2024-12-28Vue CLI学习:轻松入门与实践指南