Vue - 路由传一个Object参数,刷新页面后数据变成“[Object Object]“ 解决方案

原文链接:https://blog.csdn.net/Jie_1997/article/details/109100193


路由传一个Object参数,刷新页面后数据变成"[Object Object]" 解决方案

解决方案: 使用 JSON 转译

传参:JSON.stringify()

letvideoObj=JSON.stringify(obj);this.$router.push({name:"playVideo",params:{video:videoObj},});

接收参数:JSON.parse()

this.video=JSON.parse(this.$route.params.video);console.log(this.video)

你可能感兴趣的:(Vue - 路由传一个Object参数,刷新页面后数据变成“[Object Object]“ 解决方案)