uni-app 加载顺序及获取参数相关的两个问题
作者:互联网
uniapp
一,通常 在/page/index/index的onload都开始执行了,onlaunch还没执行完。怎么去控制这个顺序呢?
在网上百度到这个方法:
1,在main.js中添加:
Vue.prototype.$onLaunched = new Promise(resolve => {
Vue.prototype.$isResolve = resolve
})
2,在app.vue onlaunch执行完的地方,加上:this.$isResolve()
3,在index.vue里
async onl oad(option) {
// 等待onlauch执行完毕
await this.$onLaunched;
console.log("onlauch加载完成,进入onload")
// ...onload要执行的代码
}
二,我在测试中发现,从模板消息、扫码等特殊场景进入小程序指定页面并带有参数时,页面的onload取不到options
解决方法:getCurrentPages()[0].options 可以拿到参数
但是又发现,从别的页面wx.navigateTo过来的,带参数的,getCurrentPages()[0].options又拿不到了
所以,最后是这样写的
async onl oad(options) {
// 等待onlauch执行完毕
await this.$onLaunched;
var option=!!options?options:getCurrentPages()[0].options
}
标签:onload,index,app,onLaunched,onlauch,getCurrentPages,uni,options,加载 来源: https://www.cnblogs.com/angular2016/p/14151911.html