微信小程序onLaunch异步,首页onLoad先执行?

时间:2024-04-18 11:03:59
【文件属性】:

文件名称:微信小程序onLaunch异步,首页onLoad先执行?

文件大小:45KB

文件格式:PDF

更新时间:2024-04-18 11:03:59

微信,小,程序,onLaunch,异步,,,首页,onLoa

本来按照事件顺序,小程序初始化时触发App里的onLaunch,后面再执行页面Page里的onLoad,但是在onLaunch里请求获取是否有权限,等待返回值的时候Page里的onLoad事件就已经执行了。   //app.js App({ onLaunch: function () { console.log('onLaunch'); wx.request({ url: 'test.php', //仅为示例,并非真实的接口地址 data: { }, success: function(res) { console.log('onLaunch-request-success'); // 将em


网友评论