小程序navigateTo 转参注意二点。JSON.stringify(object),JSON.parse(String),encodeURIComponentdecodeURIComponent(

Posted 汉客先生

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序navigateTo 转参注意二点。JSON.stringify(object),JSON.parse(String),encodeURIComponentdecodeURIComponent(相关的知识,希望对你有一定的参考价值。

传:
1.  JSON.stringify(object); 转String 
2.encodeURIComponent编码
 
 var currentObj =encodeURIComponent(JSON.stringify(e.currentTarget.dataset.index));

            wx.navigateTo({
                url: ‘../../pages/order/orderDetail/orderDetail?currentObj=‘ + currentObj
            });
 
 
================================================
接收:
1.String 转对象  JSON.parse(String)
2.decodeURIComponent解码
 
  var currentObj = JSON.parse(decodeURIComponent(options.currentObj));
        console.log("currentObj",currentObj);

以上是关于小程序navigateTo 转参注意二点。JSON.stringify(object),JSON.parse(String),encodeURIComponentdecodeURIComponent(的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序 wx.navigateTo()传参

微信小程序 wx.navigateTo()多个参数传参方法

微信小程序页面

微信小程序中应注意的点(踩过的坑)

微信小程序wx.navigateto传递参数为啥页面接收不到

小程序中 wx.navigateTo 页面跳转没有反应?