onLoad里面使用options貨物參數(shù)
options.參數(shù)名字
this.mp.query 獲取url里面?zhèn)鲄?shù)
this.$root.$mp.query.參數(shù)名字
onShow()里面獲取參數(shù)
onShow() {
// 獲取當(dāng)前小程序的頁面棧
let pages = getCurrentPages();
// 數(shù)組中索引最大的頁面--當(dāng)前頁面
let currentPage = pages[pages.length-1];
// 打印出當(dāng)前頁面中的 options
console.log(currentPage.options) //正常打印出 options 值
},