微信小程序toast框的使用

Posted on 2019-02-26 17:42  猫头唔食鱼  阅读(548)  评论(0编辑  收藏  举报

1.wx.showToast() 方法可以配置toast框的提示文字,消失的时间,显示的图标

   wx.showToast({
        title: '请链接网络',
        icon:"none", // 没有图标时,使用none
        duration:2000
      })