uni-app 应用
1、在小程序中获取路由参数
在小程序中获取路由的方式有两种:1)、在 onload 钩子函数中获取,通过钩子函数的参数 option 获取到;2)、在 js 中通过 getCurPage() 方法拿到;例如:
// onload 钩子中获得
onload: function(option){ console.log(option) } // getCurpage()方法获得 let pages = getCurrentPages(); let cutPage = pages[pages.length - 1]; let curParam = curPage.options || curPage.$route.query;
curPage.options || curPage.$route.query 是一种兼容的写法,但是通过 getCurpage() 获得的数据,options 好像通过枚举设置了不可获得,因此 curPage.options 在小程序中是拿不到值的