Vue 短信验证码组件开发详解
程序员文章站
2022-10-06 18:43:39
vue.js(读音 /vjuː/, 类似于 view)是一个构建数据驱动的 web 界面的库。vue.js 的目标是通过尽可能简单的 api 实现响应的数据绑定和...
vue.js(读音 /vjuː/, 类似于 view)是一个构建数据驱动的 web 界面的库。vue.js 的目标是通过尽可能简单的 api 实现响应的数据绑定和组合的视图组件。
vue.js 自身不是一个全能框架——它只聚焦于视图层。因此它非常容易学习,非常容易与其它库或已有项目整合。另一方面,在与相关工具和支持库一起使用时,vue.js 也能完美地驱动复杂的单页应用。
摘要:
1、该组件基于vue 2.1.x版本;
1、 vue 组件代码如下:
vue.component('timerbtn',{ template: '<button v-on:click="run" :disabled="disabled || time > 0">{{ text }}</button>', props: { second: { type: number, default: 60 }, disabled: { type: boolean, default: false } }, data:function () { return { time: 0 } }, methods: { run: function () { this.$emit('run'); }, start: function(){ this.time = this.second; this.timer(); }, stop: function(){ this.time = 0; this.disabled = false; }, setdisabled: function(val){ this.disabled = val; }, timer: function () { if (this.time > 0) { this.time--; settimeout(this.timer, 1000); }else{ this.disabled = false; } } }, computed: { text: function () { return this.time > 0 ? this.time + 's 后重获取' : '获取验证码'; } } });
2、使用方式:
<timer-btn ref="timerbtn" class="btn btn-default" v-on:run="sendcode" :disabled="disabled" :second="60"></timer-btn>
disabled 建议不要绑定,我们可以通过调用组件的setdisabled方法来切换按钮可用状态;
second 初始值60s 没特别值可以不绑定;
所以我们可以在html页面这样:
<timer-btn ref="timerbtn" class="btn btn-default" v-on:run="sendcode" ></timer-btn>
js这样:
var vm = new vue({ el:'#app', methods:{ sendcode:function(){ vm.$refs.timerbtn.setdisabled(true); //设置按钮不可用 hz.ajaxrequest("sys/sendcode?_"+$.now(),function(data){ if(data.status){ vm.$refs.timerbtn.start(); //启动倒计时 }else{ vm.$refs.timerbtn.stop(); //停止倒计时 } }); }, } });
以上所述是小编给大家介绍的vue 短信验证码组件开发详解,希望对大家有所帮助
上一篇: 身体已开始养老