使用toast API做提醒 开发者工具有效,真机无效
在一个wx.request请求开始使用wx.showToast({title: ‘加载中…’, icon: ‘loading’, duration: 10000}),做加载中的loading态提醒,然后在请求的success函数中这么写:
wx.hideToast();
wx.showToast({title: ‘加载完成’, icon: ‘success’, duration: 1000});
后面提示加载完成的toast在开发者工具有效,iPhone6splus真机上无效