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

通过先encodeURIComponent,取到值以后再decodeURIComponent,拼接参数正常传递

小程序跳转传参参数值为url时参数丢失
A页面
switch: function (e) {
    var aa = UNNZVUf5qkM=;//拼接到url的参数
    var urls = encodeURIComponent(aa);//先encodeURIComponent
    wx.navigateTo({
      url: /pages/teaTestWork/teaTestWork?id= + urls,
    })
    
  },

B页面
onLoad: function (options) {
  
    console.log(decodeURIComponent(options.id));//结果为UNNZVUf5qkM=
    
  },
View Code

 

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

上一篇:微信小程序简单个人信息表单页面


下一篇:微信小程序组件开发