当参数的值为id的时候,在id中的值没有参数“?”之后字符串被截取。
传过去,通过encodeURIComponent方法进行转译
let a=encodeURIComponent(e)
this.$router.push({ path: '/pages/main/home-index/components/webviews', query: { id: a } })
接收
this.URL=decodeURIComponent(this.$route.query.id)
console.log(this.URL);
网友评论