toast和loading的问题
// 正常业务逻辑 getUserByID() { wx.showLoading({ title: '查询中' , }) let params = { url: '/applet/user' , data:{ id:10001 } } app.ajax(params,(res) => { // success wx.showToast({ title: '查询成功' , icon: 'success' , duration:2500 }) },(res) => { // fail wx.showModal({ content: '连接服务器失败,请稍后重试' }) },(res) => { // complete wx.hideLoading() }) } |
wx.hideLoading应该只能关闭loading的toast,否则上述提示完全错乱,希望官方能好好优化下提示