码迷,mamicode.com
首页 > 其他好文 > 详细

小程序开发 页面间传参

时间:2017-11-03 13:04:46      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:str   page   new   string   parse   detail   小程序   程序   gate   

传数据
wx.navigateTo({
url: ‘/pages/newsdetail/newsdetail?tea=‘ + JSON.stringify(this.data.newlist[id-1])
})
 
接数据
onLoad: function (options) {
// 传过来的数据在此处接受,options为对象格式
let item = JSON.parse(options.tea);
console.log(item);
this.setData({ newdetail: item });
},
 

小程序开发 页面间传参

标签:str   page   new   string   parse   detail   小程序   程序   gate   

原文地址:http://www.cnblogs.com/dianzan/p/7777315.html

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