onLoad()中调用wx.hideLoading()不触发回调
onLoad: function (options) { wx.showLoading({ title: '加载中', mask: true }); this.fetchBindStatus().then(res => { wx.hideLoading({ complete: () => { console.log('我不会被触发'); }) }, error => { return Promise.reject(); }).catch(error => { console.log(error); }); } 尝试了在onReady里面调用可以触发 在onLoad里面延时调用可以触发 为啥onLoad直接调用不行?这是bug还是特性?