gpt4 book ai didi

javascript - React App 中的倒计时似乎呈指数级倒计时

转载 作者:行者123 更新时间:2023-11-30 20:06:52 26 4
gpt4 key购买 nike

我正在尝试使用 React JS 制作一个简单的倒计时按钮。它几乎完成了,但是,当我希望它仅在单击按钮后才开始倒计时时,它会立即倒计时。

默认值为10,如果不输入自己的值,大于0,则从10开始倒计时。

下面是我的代码:

import React, {Component} from 'react';
import './app.css';
import { Form, FormControl, Button } from 'react-bootstrap';

class Countdown extends Component {
constructor(props){
super(props);
this.state={
time: ''
}
}

componentWillMount(){
this.setState({time: 10});
}

componentDidMount(){
setInterval(() => this.registerTime(this.state.time - 1), 1000);
}

registerTime(time){
if(time >= 0){
this.setState({time});
}
}

countdown(){
const textVal = document.getElementById('time-input').value;
if(isNaN(textVal) || textVal == '' || textVal == ' ' || textVal <= 0){
alert("Please enter a numeric value greater than 0!");
} else{
this.registerTime(textVal);
}
}

render(){
return(
<div className="app">
<h1>This is going to be a Countdown!</h1>
<div>{this.state.time}</div>
<Form inline>
<FormControl
id="time-input"
placeholder="new time"
onChange={event => {
if(event.target.value != '' && event.target.value != ' '){
this.setState({time: event.target.value});
}
}}
onKeyPress={event => {
if(event.key === 'Enter'){this.countdown();}
}}
/>
<Button onClick={event => this.countdown()} >Start</Button>
</Form>
</div>
);
}
}

export default Countdown;

最佳答案

您在安装组件时立即开始了间隔。我已经在 codepen 中为您创建了一个工作演示。 https://codepen.io/RutulPatel7077/pen/yRpzVB

关于javascript - React App 中的倒计时似乎呈指数级倒计时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52836478/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com