我爱模板网 > 建站教程 > 小程序、公众号 >  微信小程序wx.showToast、wx.showModal、wx.showActionSheet、modal示例代码正文

微信小程序wx.showToast、wx.showModal、wx.showActionSheet、modal示例代码

微信小程序对于toast、modal和actionSheet的支持非常好,类型丰富,而且,效果也不错。如果不是特别的需求,用它提供的这些控件就已经足够了。下面是使用示例代码,直接复制过去就能使用,欢迎收藏!

一、吐司提示wx.showToast
1wx.showToast({
2    title: '失败',//提示文字
3    duration:2000,//显示时长
4    mask:true,//是否显示透明蒙层,防止触摸穿透,默认:false 
5    icon:'success', //图标,支持"success"、"loading" 
6    success:function(){ },//接口调用成功
7    fail: function () { },  //接口调用失败的回调函数 
8    complete: function () { } //接口调用结束的回调函数 
9})
效果图如下:

wx.showToast

二、确认对话框wx.showModal
01wx.showModal({
02    title: '删除图片',
03    content: '确定要删除该图片?',
04    showCancel: true,//是否显示取消按钮
05    cancelText:"否",//默认是“取消”
06    cancelColor:'skyblue',//取消文字的颜色
07    confirmText:"是",//默认是“确定”
08    confirmColor: 'skyblue',//确定文字的颜色
09    success: function (res) {
10        if (res.cancel) {
11            //点击取消,默认隐藏弹框
12        } else {
13            //点击确定
14        }
15    },
16    fail: function (res) { },//接口调用失败的回调函数
17    complete: function (res) { },//接口调用结束的回调函数(调用成功、失败都会执行)
18})
效果图如下:

wx.showModal

三、底部弹出选择框wx.showActionSheet
1wx.showActionSheet({
2    itemList: ['列1','列2','列3'],//显示的列表项
3    success: function (res) {//res.tapIndex点击的列表项
4        console.log("点击了列表项:" + that[res.tapIndex])
5    },
6    fail: function (res) { },
7    complete:function(res){ }
8})
效果图如下:

wx.showActionSheet

四、自定义弹框modal控件
1<modal hidden="{{hiddenmodalput}}" title="完善资料" confirm-text="提交" cancel-text="取消" bindcancel="cancelM" bindconfirm="confirmM">
2    <input bindinput='iName' type='text' placeholder="请输入姓名..." auto-focus/>
3    <input bindinput='iPhoneNum' type='number' placeholder="请输入手机号码..." />
4</modal>
js代码如下:
01data: {
02    hiddenmodalput:false,
03    name:"",
04    phoneNum:'',
05},
06cancelM:function(e){
07    this.setData({
08    hiddenmodalput: true,
09    })
10},
11 
12confirmM: function (e) {
13    console.log("姓名:" + this.data.name + "  电话:" + this.data.phoneNum);
14},
15 
16iName: function (e) {
17    this.setData({
18        name:e.detail.value
19    })
20},
21iPhoneNum: function (e) {
22    this.setData({
23        phoneNum: e.detail.value
24    })
25},
显示效果如下:

modal控件

点击取消后弹框隐藏
点击提交后打印日志如下:

modal控件



部分素材资源来源网站,本站提供免费下载,如有侵权请联系站长马上删除!
上一篇:微信小程序中的module.exports、exports详解 下一篇:微信小程序在线聊天项目的录音功能
发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
选择头像:
最新评论

猜你喜欢