72.API(界面--交互反馈)

wx.showToast(OBJECT):

显示消息提示框

72.API(界面--交互反馈)_第1张图片

代码:


72.API(界面--交互反馈)_第2张图片

wx.showLoading(OBJECT):

显示 loading 提示框, 需主动调用 wx.hideLoading 才能关闭提示框

72.API(界面--交互反馈)_第3张图片

wx.hideToast():

隐藏消息提示框

wx.hideLoading():

隐藏 loading 提示框


72.API(界面--交互反馈)_第4张图片

wx.showModal(OBJECT):

​显示模态弹窗

72.API(界面--交互反馈)_第5张图片

代码:

72.API(界面--交互反馈)_第6张图片

wx.showActionSheet(OBJECT):

​显示操作菜单

72.API(界面--交互反馈)_第7张图片

代码:

72.API(界面--交互反馈)_第8张图片

tip:

Android 6.3.30,wx.showModal 的返回的 confirm 一直为 true;

wx.showActionSheet 点击取消或蒙层时,回调 fail, errMsg 为 "showActionSheet:fail cancel";

wx.showLoading 和 wx.showToast 同时只能显示一个,使用 wx.hideToast/wx.hideLoading 都可以关闭提示框;

iOS wx.showModal 点击蒙层不会关闭模态弹窗,所以尽量避免使用“取消”分支中实现业务逻辑。

你可能感兴趣的:(72.API(界面--交互反馈))