微信小程序如何获取手机验证码
程序员文章站
2024-02-08 10:01:46
一种比较常见的功能获取手机验证码,供大家参考,具体内容如下
先看效果图:
其实这个功能实现起来很简单,主要就是调取第三方接口,拿到返回值验证的问题
直接上代码吧:...
一种比较常见的功能获取手机验证码,供大家参考,具体内容如下
先看效果图:
其实这个功能实现起来很简单,主要就是调取第三方接口,拿到返回值验证的问题
直接上代码吧:
<view class='changeinfo'> <view class='changeinfoname'> <input placeholder='请输入姓名' bindinput='getnamevalue' value='{{name}}'/> </view> <view class='changeinfoname'> <input placeholder='请输入手机号' bindinput='getphonevalue' value='{{phone}}'/> </view> <view class='changeinfoname'> <input placeholder='请输验证码' bindinput='getcodevalue' value='{[code]}' style='width:70%;'/> <button class='codebtn' bindtap='getverificationcode' disabled='{{disabled}}' >{{codename}}</button> </view> <button class='changebtn' bindtap='save'>保存</button> </view>
css:
page{ height: 100%; width: 100%; background: linear-gradient(#5681d7, #486ec3); } .changeinfo{ display: flex; flex-direction: column; justify-content: space-between; width: 90%; margin: 50rpx auto; } .changeinfoname{ position: relative; height: 80rpx; width: 100%; border-radius: 10rpx; background: #fff; margin-bottom: 20rpx; padding-left: 20rpx; box-sizing: border-box; } .codebtn{ position: absolute; right: 0; top: 0; color: #bbb; width: 30%; font-size: 26rpx; height: 80rpx; line-height: 80rpx; } .changeinfoname input{ width: 100%; height:100%; } .changebtn{ width: 40%; height: 100rpx; background: #fff; color: #000; border-radius: 50rpx; position: absolute; bottom: 10%; left: 50%; margin-left: -20%; line-height: 100rpx; }
js:
var app = require('../../resource/js/util.js'); page({ /** * 页面的初始数据 */ data: { name:'',//姓名 phone:'',//手机号 code:'',//验证码 iscode:null,//用于存放验证码接口里获取到的code codename:'获取验证码' }, //获取input输入框的值 getnamevalue:function(e){ this.setdata({ name:e.detail.value }) }, getphonevalue:function(e){ this.setdata({ phone:e.detail.value }) }, getcodevalue: function (e) { this.setdata({ code: e.detail.value }) }, getcode:function(){ var a = this.data.phone; var _this = this; var myreg = /^(14[0-9]|13[0-9]|15[0-9]|17[0-9]|18[0-9])\d{8}$$/; if (this.data.phone == "") { wx.showtoast({ title: '手机号不能为空', icon: 'none', duration: 1000 }) return false; } else if (!myreg.test(this.data.phone)) { wx.showtoast({ title: '请输入正确的手机号', icon: 'none', duration: 1000 }) return false; }else{ wx.request({ data: {}, 'url': 接口地址, success(res) { console.log(res.data.data) _this.setdata({ iscode: res.data.data }) var num = 61; var timer = setinterval(function () { num--; if (num <= 0) { clearinterval(timer); _this.setdata({ codename: '重新发送', disabled: false }) } else { _this.setdata({ codename: num + "s" }) } }, 1000) } }) } }, //获取验证码 getverificationcode() { this.getcode(); var _this = this _this.setdata({ disabled: true }) }, //提交表单信息 save:function(){ var myreg = /^(14[0-9]|13[0-9]|15[0-9]|17[0-9]|18[0-9])\d{8}$$/; if(this.data.name == ""){ wx.showtoast({ title: '姓名不能为空', icon: 'none', duration: 1000 }) return false; } if(this.data.phone == ""){ wx.showtoast({ title: '手机号不能为空', icon: 'none', duration: 1000 }) return false; }else if(!myreg.test(this.data.phone)){ wx.showtoast({ title: '请输入正确的手机号', icon: 'none', duration: 1000 }) return false; } if(this.data.code == ""){ wx.showtoast({ title: '验证码不能为空', icon: 'none', duration: 1000 }) return false; }else if(this.data.code != this.data.iscode){ wx.showtoast({ title: '验证码错误', icon: 'none', duration: 1000 }) return false; }else{ wx.setstoragesync('name', this.data.name); wx.setstoragesync('phone', this.data.phone); wx.redirectto({ url: '../add/add', }) } }, /** * 生命周期函数--监听页面加载 */ onload: function (options) { }, /** * 生命周期函数--监听页面初次渲染完成 */ onready: function () { }, /** * 生命周期函数--监听页面显示 */ onshow: function () { }, /** * 生命周期函数--监听页面隐藏 */ onhide: function () { }, /** * 生命周期函数--监听页面卸载 */ onunload: function () { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onpulldownrefresh: function () { }, /** * 页面上拉触底事件的处理函数 */ onreachbottom: function () { }, /** * 用户点击右上角分享 */ onshareappmessage: function () { } })
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。