1. 程式人生 > >三十七、小程式頁面跳轉傳參引數值為url時引數丟失

三十七、小程式頁面跳轉傳參引數值為url時引數丟失

當引數的值為url的時候,在options中的值沒有引數“?”之後字串被擷取。
例如:
let url="http://baidu.com/?a=1&b=2"
wx.navigateTo({
url: `detail?url=${url}`
})
可以使用encodeURIComponent():函式可把字串作為 URI 元件進行編碼。
let url=encodeURIComponent("http://baidu.com/?a=1&b=2")
wx.navigateTo({
url: `detail?url=${url}`
})
在獲取的時候decodeURIComponent(options.url)
---------------------
作者:beanLau
來源:CSDN
原文:https://blog.csdn.net/qq_27223987/article/details/79885514
版權宣告:本文為博主原創文章,轉載請附上博文連結!