今天写微信小程序突然发现一个尴尬的问题,请求报错需要提示,就去小程序API里找,可悲的小程序的toast并不能满足我的需求,原生提供的方法调用如下
wx.showToast({
title: '成功',
icon: 'succes',
duration: ,
mask:true
})
下面是官方API的说明
可以看到支持的图标只有两种,连基本的warning和error都没有,最可悲的是title最多只支持7个汉字的长度,完全不能忍啊,现在哪个框架里还没有个正儿八经提示框的组件,想想还是自己写一个算了,下面是效果图
下面来说下小程序实现自定义公共组件的方法,以自定义toast为例
1、新建toast组件
在toast.json里修改如下,设置为组件
{
"component": true
}
toast.wxml
<view class='wx-toast-box' animation="{{animationData}}">
<view class='wx-toast-content'>
<view class='wx-toast-toast'>{{ content }}</view>
</view>
</view>
定义样式,toast.wxss,这里使用flex布局,代码很简单,也没什么好说的,直接贴上
.wx-toast-box{
display: flex;
width: %;
justify-content: center;
position: fixed;
z-index: ;
bottom:80rpx;
opacity: ;
}
.wx-toast-content{
max-width: %;
border-radius:30rpx;
padding: 30rpx;
background: rgba(, , , 0.6);
}
.wx-toast-toast{
height: %;
width: %;
color: #fff;
font-size: 28rpx;
text-align: center;
}
toast.js
Component({
options: {
multipleSlots: true // 在组件定义时的选项中启用多slot支持
},
/**
* 私有数据,组件的初始数据
* 可用于模版渲染
*/
data: { // 弹窗显示控制
animationData: {},
content: '提示内容'
},
/**
* 组件的方法列表
*/
methods: {
/**
* 显示toast,定义动画
*/
showToast(val) {
var animation = wx.createAnimation({
duration: ,
timingFunction: 'ease',
})
this.animation = animation
animation.opacity().step()
this.setData({
animationData: animation.export(),
content: val
})
/**
* 延时消失
*/
setTimeout(function () {
animation.opacity().step()
this.setData({
animationData: animation.export()
})
}.bind(this), )
}
}
})
2、在父级组件中调用公共组件,以login页面为例
在login.json中注册组件
{
"navigationBarTitleText": "登录注册",
"usingComponents":{
"toast": "../common/toast/toast"
}
}
login.wxml中调用组件
<view>
<toast id='toast'>
</toast>
</view>
login.js里点击登陆录的时候调用显示showDialog方法
onReady: function () {
this.toast = this.selectComponent("#toast");
},
listenerLogin: function() {
this.toast.showToast('恭喜你,获得了toast');
},