小程序url动态传递,参数丢失问题

在使用小程序跳转外部链接的时候使用到navigateTo / webView跳转
url 传递过来的 url比如为https://m.nicestwood.com/information/?bId=658

接受到的确实https://m.nicestwood.com/information,后面的参数丢失

需要用encodeURIComponent(),编码一下使用时decodeURIComponent()解码

  let data = encodeURIComponent(e.currentTarget.dataset.url)
       const url = `/pages/webview/webview?link=${data}`
       wx.navigateTo({ url })
 let links = decodeURIComponent(options.link)
    this.setData({ url: `${links}?token=${token}` })
    wxml文件
     

说明 encodeURIComponent不会对 ASCII 字母和数字进行编码,也不会对这些 ASCII 标点符号进行编码: - _ .
! ~ * ’ ( ) 。 其他字符(比如 :;/?&=+$,# 这些用于分隔 URI
组件的标点符号),都是由一个或多个十六进制的转义序 列替换的

encodeURIComponent()用于url作为参数传递的场景中使用

你可能感兴趣的:(javascript,前端)