博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
微信小程序传递参数(字符串、数组、对象)
阅读量:5346 次
发布时间:2019-06-15

本文共 556 字,大约阅读时间需要 1 分钟。

 
【转自燕歆波】感谢!
//通过提供的JSON.stingify方法,将对象转换成字符串后传递  click:function(e){    var model = JSON.stringify(e.currentTarget.dataset.model);    wx.navigateTo({      url: '../detail/detail?model=' + model,    })  }//接收onLoad: function (options) {    //将字符串转换成对象    var bean = JSON.parse(options.model);    if(options.model == null){      wx.showToast({        title: '数据为空',      })      return;    }      this.setData({          model:bean      })      },

原文:http://blog.csdn.net/yanxiaosa/article/details/73643066

转载于:https://www.cnblogs.com/Early-Bird/p/8375863.html

你可能感兴趣的文章
我并不是不闻不问![C#]
查看>>
web前端经典小题
查看>>
AutoCAD如何倒角 倒圆角 倒直角
查看>>
Office PPT中如何插入flash
查看>>
C# Fade Form Effect With the AnimateWindow API Function
查看>>
golang多维数组的切片
查看>>
IP 网际协议
查看>>
C语言_第五章__实践(密码转换)
查看>>
docker 容器后台运行命令
查看>>
jquery 获取css position的值
查看>>
面向对象的程序设计
查看>>
a标签添加点击事件
查看>>
Context.startActivity出现AndroidRuntimeException
查看>>
Intellij idea创建javaWeb以及Servlet简单实现
查看>>
代理网站
查看>>
Open multiple excel files in WebBrowser, only the last one gets activated
查看>>
FFmpeg进行视频帧提取&音频重采样-Process.waitFor()引发的阻塞超时
查看>>
最近邻与K近邻算法思想
查看>>
【VS开发】ATL辅助COM组件开发
查看>>
FlatBuffers In Android
查看>>