码迷,mamicode.com
首页 > 微信 > 详细

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

时间:2020-01-15 19:35:41      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:url   get   gif   options   component   encodeuri   ons   parse   log   

传:
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

标签:url   get   gif   options   component   encodeuri   ons   parse   log   

原文地址:https://www.cnblogs.com/gzhbk/p/12198116.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!