通过转换传递json字符串来实现传递,接收时再转换回来。
传递时代码:
let strItem = JSON.stringify(item); this.$router.push(`/detail/` + encodeURIComponent(strItem));
接收时的处理:
let info = decodeURIComponent(this.$route.params.id); this.detail= JSON.parse(info);
通过转换传递json字符串来实现传递,接收时再转换回来。
传递时代码:
let strItem = JSON.stringify(item); this.$router.push(`/detail/` + encodeURIComponent(strItem));
接收时的处理:
let info = decodeURIComponent(this.$route.params.id); this.detail= JSON.parse(info);
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。