小程序又出bug了?hideLoading能把toast也隐藏掉
小程序又出bug了?hideLoading能把toast也隐藏掉。
真机会出现,开发工具没问题
小程序又出bug了?hideLoading能把toast也隐藏掉。
真机会出现,开发工具没问题
在app.js自己封装个东西就好
showToast(msg, delay = 0) { if (delay == 0) { wx.showToast({ title: msg, icon: 'none' }) } else { setTimeout(function() { wx.showToast({ title: msg, icon: 'none' }) }, delay) } } |