10
ReactJS: setTimeout () çalışmıyor mu?
Bu kodu akılda tutarak: 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') ); Durumun ancak 3 saniye sonra değişmesi gerekmiyor mu? …
104
javascript
reactjs