vue传值的编码和解码
第一步:传值编码 encodeURIComponent()skip(){this.$router.push({path:'./channelPromotion?channelName='+'我是字段'+'&&channelUrl='+encodeURIComponent('https://www.baidu.com/#/rejister..........
·
第一步:传值
编码 encodeURIComponent()
skip(){
this.$router.push({
path:'./channelPromotion?channelName='+'我是字
段'+'&&channelUrl='+encodeURIComponent('https://www.baidu.com/#/rejister.........')
})
}
第二步 取值
解码 decodeURIComponent()
mounted(){
let channelUrl=decodeURIComponent(this.$route.query.channelUrl)
console.log(channelUrl)
}
更多推荐
已为社区贡献28条内容
所有评论(0)