记住这个代码:
var Component = React.createClass({
getInitialState: function () {
return {position: 0};
},
componentDidMount: function () {
setTimeout(this.setState({position: 1}), 3000);
},
render: function () {
return (
<div className="component">
{this.state.position}
</div>
);
}
});
ReactDOM.render(
<Component />,
document.getElementById('main')
);
状态不是应该在 3 秒后才改变吗?它立即发生变化。
我在这里的主要目标是每 3 秒更改一次状态(使用setInterval()
),但由于它不起作用,我尝试了setTimeout()
,这也不起作用。有这方面的灯吗?谢谢!