React 60s倒计时
Posted hcxwd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了React 60s倒计时相关的知识,希望对你有一定的参考价值。
this.state = { btnText: ‘获取验证码‘, timer: 5, discodeBtn: false, clearInterval: false } let siv = setInterval(() => { this.setState({ timer: (timer--), btnText: timer, discodeBtn: true }, () => { if (timer === 0) { clearInterval(siv); this.setState({ btnText: ‘重新发送‘, discodeBtn: false }) } }); }, 1000);
以上是关于React 60s倒计时的主要内容,如果未能解决你的问题,请参考以下文章