一、loading
wx.showLoading({})显示loading提示框。wx.hideLoading({})隐藏loading提示框。
title:文字提示内容
mask:是否显示透明蒙层,防止触摸穿透。
更多属性参考showLoading官方文档。
wx.showLoading({
title: '加载中...',
mask: true
})
wx.hideLoading({})
二、toast
wx.showToast({})显示消息提示框(轻提示)。
icon:是否使用图标,不使用设为none。
duration:延迟时间。
mask:是否显示透明蒙层,防止触摸穿透。
更多属性请参考showToast官方文档。
wx.showToast({
icon: 'none',
title: '查询成功',
})
文章来源:https://www.toymoban.com/news/detail-834624.html
三、注意
showLoading和showToast,同时只能显示一个。文章来源地址https://www.toymoban.com/news/detail-834624.html
到了这里,关于小程序--loading和toast的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!