【小程序】展示弹窗常见API详解

清疚 2023-10-02 20:42 124阅读 0赞

文章目录

    • 展示弹窗常见的API
      • showToast
      • showModal
      • showLoading
      • showActionSheet

展示弹窗常见的API

小程序中展示弹窗有四种方式: showToastshowModalshowLoadingshowActionSheet

showToast

显式消息提示框

有如下一些属性:





































































属性 类型 默认值 必填说明
title string 提示的内容
icon string success 图标
image string 自定义图标的本地路径,image 的优先级高于 icon
duration number 1500 提示的内容展示的时机
mask boolean false 是否显示透明蒙层,防止触摸穿透
success function 接口调用成功的回调函数
fail function 接口调用失败的回调函数
complete function 接口调用结束的回调函数(调用成功、失败都会执行)

其中icon属性有如下一些值:


























合法值 说明
success 显示成功图标,此时 title 文本最多显示 7 个汉字长度
error 显示失败图标,此时 title 文本最多显示 7 个汉字长度
loading 显示加载图标,此时 title 文本最多显示 7 个汉字长度
none 不显示图标,此时 title 文本最多可显示两行,1.9.0及以上版本支持

演示代码

  1. wx.showToast({
  2. title: "购买失败",
  3. icon: "error",
  4. duration: 100,
  5. mask: true,
  6. success: (res) => {
  7. console.log("展示成功: ", res);
  8. },
  9. fail: (err) => {
  10. console.log("展示失败: ", err);
  11. }
  12. })

showModal

显示模态对话框

常见属性如下:

































































































属性 类型 默认值 必填 说明
title string 提示的标题
content string 提示的内容
showCancel boolean true 是否显示取消按钮
cancelText string 取消 取消按钮的文字,最多 4 个字符
cancelColor string #000000 取消按钮的文字颜色,必须是 16 进制格式的颜色字符串
confirmText string 确定 确认按钮的文字,最多 4 个字符
confirmColor string #576B95 确认按钮的文字颜色,必须是 16 进制格式的颜色字符串
editable boolean false 是否显示输入框
placeholderText string 显示输入框时的提示文本
success function 接口调用成功的回调函数
fail function 接口调用失败的回调函数
complete function 接口调用结束的回调函数(调用成功、失败都会执行)

演示代码

  1. wx.showModal({
  2. title: "四个二",
  3. cancelText: "要不起",
  4. cancelColor: '#f00',
  5. confirmText: "管上",
  6. confirmColor: "skyblue",
  7. success: (res) => {
  8. console.log("展示成功: ", res);
  9. },
  10. fail: (err) => {
  11. console.log("展示失败: ", err);
  12. }
  13. })

在成功的回调函数中, 有如下属性判断用户点击了确定还是取消


























属性 类型 说明
content string editable 为 true 时,用户输入的文本
confirm boolean 为 true 时,表示用户点击了确定按钮
cancel boolean 为 true 时,表示用户点击了取消(用于 Android 系统区分点击蒙层关闭还是点击取消按钮关闭)
  1. wx.showModal({
  2. title: "四个二",
  3. cancelText: "取消",
  4. confirmText: "确定",
  5. success: (res) => {
  6. console.log("展示成功: ", res);
  7. if (res.cancel) {
  8. console.log("用户点击了左边取消按钮");
  9. } else if (res.confirm) {
  10. console.log("用户点击了右边确定按钮");
  11. }
  12. },
  13. fail: (err) => {
  14. console.log("展示失败: ", err);
  15. }
  16. })

showLoading

显示 loading 提示框。与showToast的区别是, 守卫Loading需主动调用 wx.hideLoading 才能关闭提示框

其中的属性如下:
















































属性 类型 默认值 必填 说明
title string 提示的内容
mask boolean false 是否显示透明蒙层,防止触摸穿透
success function 接口调用成功的回调函数
fail function 接口调用失败的回调函数
complete function 接口调用结束的回调函数(调用成功、失败都会执行)

演示代码

  1. wx.showLoading({
  2. title: '加载中',
  3. mask: true,
  4. success: (res) => {
  5. console.log(res);
  6. },
  7. fail: (err) => {
  8. console.log(err);
  9. }
  10. })

showActionSheet

显示操作菜单























































属性 类型 默认值 必填 说明
alertText string 警示文案
itemList Array.<string> 按钮的文字数组,数组长度最大为 6
itemColor string #000000 按钮的文字颜色
success function 接口调用成功的回调函数
fail function 接口调用失败的回调函数
complete function 接口调用结束的回调函数(调用成功、失败都会执行)

演示代码

  1. wx.showActionSheet({
  2. itemList: ["Macbook", "iPad", "iPhone"],
  3. itemColor: "#f00",
  4. success: (res) => {
  5. console.log(res);
  6. },
  7. fail: (err) => {
  8. console.log(err);
  9. }
  10. })

成功的回调res中的属性
















属性 类型 说明
tapIndex number 用户点击的按钮序号,从上到下的顺序,从0开始

可以通过tapIndex知道点击了哪个按钮

  1. wx.showActionSheet({
  2. itemList: ["Macbook", "iPad", "iPhone"],
  3. itemColor: "#f00",
  4. success: (res) => {
  5. console.log(res .tapIndex);
  6. },
  7. fail: (err) => {
  8. console.log(err);
  9. }
  10. })

注意

wx.showToastwx.showLoading同时只能显示一个

wx.showLoadingwx.hideLoading配对使用

发表评论

表情:
评论列表 (有 0 条评论,124人围观)

还没有评论,来说两句吧...

相关阅读