我在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;
谢谢@dotnetom,@ greg-herbowicz
如果返回“ this.state未定义”-绑定计时器函数: