微信小程序页面传值为对象[Object Object]详解
- 1、先将传递的对象转化为JSON字符串拼接到url上
- 2、在接受对象页面进行转译
- 3、打印结果
1、先将传递的对象转化为JSON字符串拼接到url上
// info为对象
let stationInfo = JSON.stringify(info)
uni.navigateTo({url: `/pages/station-detail/station-detail?stationInfo=${stationInfo}`})
2、在接受对象页面进行转译
onLoad(options) {let stationData = JSON.parse(options.stationInfo)console.log(stationData);
},