微信小程序页面传值为对象[Object Object]详解

微信小程序页面传值为对象[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);
},

3、打印结果

微信小程序页面传值为对象[Object Object]详解_第1张图片

你可能感兴趣的:(微信小程序,微信小程序,小程序)