uni app頁面傳參decodeURIComponent

聖劍Jay發表於2020-10-20
1、專案中如果我們傳的引數出現#,/,&這些字元,這些特殊字元會導致我們接收引數的錯誤

2、必須要用 encodeURIComponent 編碼,目標頁面進行 decodeURIComponent 解碼

3、如果是物件,物件先轉json字串
var object_string = encodeURIComponent(JSON.stringify(object)

目標頁面,轉回物件
var object = JSON.parse(decodeURIComponent(object_string));

參考:
js編碼解碼decodeURI()與decodeURIComponent()的區別

使用encodeURI和decodeURI轉碼和解碼

相關文章