美文网首页
小程序页面跳转传参参数值为url时参数丢失

小程序页面跳转传参参数值为url时参数丢失

作者: 苏本的书柜 | 来源:发表于2018-11-28 14:33 被阅读255次

    当参数的值为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);
    
    

    相关文章

      网友评论

          本文标题:小程序页面跳转传参参数值为url时参数丢失

          本文链接:https://www.haomeiwen.com/subject/wjgaqqtx.html