跳转页面时获取发起跳转页面的data数据
在跳转后页面使用如下代码:
//获取当前小程序的页面栈
const pages=getCurrentPages()
const 常量名称=pages[0].data.具体数据
//数组中索引最大的页面就是当前页面
const currentPage=pages[pages.length-1]
console.log(currentPage.options)
在跳转后页面使用如下代码:
//获取当前小程序的页面栈
const pages=getCurrentPages()
const 常量名称=pages[0].data.具体数据
//数组中索引最大的页面就是当前页面
const currentPage=pages[pages.length-1]
console.log(currentPage.options)