一、React版本
16.4.1
二、具体代码如下
设置state属性
constructor(props){ super(props); this.state = { btnText:'获取验证码', seconds: 60, //称数初始化 liked: true //获取验证码文案 } }
2.倒计时
// 获取验证码 sendCode = () => { let siv = setInterval(() => { this.setState({ liked:false, seconds:this.state.seconds - 1, },() => { if(this.state.seconds == 0){ clearInterval(siv); this.setState({ liked:true, secounds:60 }) } }); },1000); }
3.jsx代码
<FormItem {...formItemLayout} label="验证码" > <Row gutter={8}> <Col span={6}> {getFieldDecorator('captcha', { rules: [{ required: true, message: '请输入短信验证码!' }], })( <Input /> )} </Col> <Col span={12}> <Button onClick={this.sendCode} disabled={!this.state.liked}> { this.state.liked "htmlcode">import React, { Component } from 'react' import axios from 'axios' export default class Timer extends Component { constructor(props) { super(props) this.state = { bool: false, days: '0', hours: '00', minutes: '00', seconds: '00' } } componentDidMount() { this.start() } async start() { this.timer && clearTimeout(this.timer) // 先清除一遍定时器,避免被调用多次 // 发起任意一个服务器请求, 然后从headers 里获取服务器时间 let leftTime = await axios.get('/').then(response => { return new Date(this.props.date).getTime() - new Date(response.headers.date).getTime() // 服务器与倒计时的 时间差 }).catch(error => { console.log(error) return 0 // 这里发送的服务器请求失败 设为0 }) // 倒计时 this.timer = setInterval(() => { leftTime = leftTime - 1000 let { bool, days = '0', hours = '00', minutes = '00', seconds = '00' } = this.countdown(leftTime) if (bool) { // 结束倒计时 clearTimeout(this.timer) } this.setState({ bool, days, hours, minutes, seconds }) }, 1000) } /** * 倒计时 * @param leftTime 要倒计时的时间戳 */ countdown(leftTime) { let bool = false if (leftTime <= 0) { bool = true return { bool } } var days = parseInt(leftTime / 1000 / 60 / 60 / 24, 10) //计算剩余的天数 var hours = parseInt(leftTime / 1000 / 60 / 60 % 24, 10) if (hours < 10) { hours = '0' + hours } var minutes = parseInt(leftTime / 1000 / 60 % 60, 10) if (minutes < 10) { minutes = '0' + minutes } var seconds = parseInt(leftTime / 1000 % 60, 10) if (seconds < 10) { seconds = '0' + seconds } return { bool, days, hours, minutes, seconds } } componentWillUnmount() { clearTimeout(this.timer) } render() { let { bool, days, hours, minutes, seconds } = this.state return ( <div> { bool ? <div>活动已结束</div> : <div> {days} 天 {hours} : {minutes} : {seconds} </div> } </div> ) } }以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
暂无“React注册倒计时功能的实现”评论...
更新动态
2025年01月15日
2025年01月15日
- 小骆驼-《草原狼2(蓝光CD)》[原抓WAV+CUE]
- 群星《欢迎来到我身边 电影原声专辑》[320K/MP3][105.02MB]
- 群星《欢迎来到我身边 电影原声专辑》[FLAC/分轨][480.9MB]
- 雷婷《梦里蓝天HQⅡ》 2023头版限量编号低速原抓[WAV+CUE][463M]
- 群星《2024好听新歌42》AI调整音效【WAV分轨】
- 王思雨-《思念陪着鸿雁飞》WAV
- 王思雨《喜马拉雅HQ》头版限量编号[WAV+CUE]
- 李健《无时无刻》[WAV+CUE][590M]
- 陈奕迅《酝酿》[WAV分轨][502M]
- 卓依婷《化蝶》2CD[WAV+CUE][1.1G]
- 群星《吉他王(黑胶CD)》[WAV+CUE]
- 齐秦《穿乐(穿越)》[WAV+CUE]
- 发烧珍品《数位CD音响测试-动向效果(九)》【WAV+CUE】
- 邝美云《邝美云精装歌集》[DSF][1.6G]
- 吕方《爱一回伤一回》[WAV+CUE][454M]