美文网首页
wx.showToast

wx.showToast

作者: 刷爆服务器 | 来源:发表于2018-06-23 23:15 被阅读0次

icon的使用

icon主要有三种,success,loading和none

  • 显示成功图标


wx.showToast({
  title: '成功',
  icon: 'success',
  duration: 4000 //延时时间长一点好截图
})
  • 显示加载图标


wx.showToast({
        title: '加载',
        icon: 'loading',
        duration: 4000
    })
  • 不显示图标


primary: function(){
    wx.showToast({
        title: 'hi',
        icon: 'none',
        duration: 4000
    })

image的使用

primary: function(){
    wx.showToast({
        title: 'hi',
        image: '../../images/1.png', //image的优先级比icon高,所以不显示icon
        icon: 'loading',
        duration: 4000 
    })

相关文章

网友评论

      本文标题:wx.showToast

      本文链接:https://www.haomeiwen.com/subject/ypwdyftx.html