我在 React 方面还是个新手,但我一直在慢慢磨合,我遇到了一些我一直在坚持的事情。
我正在尝试在 React 中构建一个“计时器”组件,老实说我不知道我这样做是否正确(或有效)。在下面我的代码,我设置状态来返回一个对象{ currentCount: 10 }
,并已与玩弄componentDidMount
,componentWillUnmount
和render
我只能得到状态,以“倒计时”,从10到9。
由两部分组成的问题:我做错了什么?并且,是否有更有效的方法来使用 setTimeout (而不是使用componentDidMount
& componentWillUnmount
)?
先感谢您。
import React from 'react';
var Clock = React.createClass({
getInitialState: function() {
return { currentCount: 10 };
},
componentDidMount: function() {
this.countdown = setInterval(this.timer, 1000);
},
componentWillUnmount: function() {
clearInterval(this.countdown);
},
timer: function() {
this.setState({ currentCount: 10 });
},
render: function() {
var displayCount = this.state.currentCount--;
return (
<section>
{displayCount}
</section>
);
}
});
module.exports = Clock;