0
私のReact-Railsアプリケーションでは、なぜcomponentWillMountのコンソールに状態を記録できないのか混乱していますが、componentDidMountではこれを行うことができます。以下はcomponentWillMountではコンソールに状態を記録できませんが、componentDidMountで状態を記録できないのはなぜですか?
私のコードです:
componentWillMount() {
this.setState({ records: this.props.data });
console.log(this.state.records); // throws TypeError: Cannot read property 'records' of null
}
componentDidMount() {
console.log(this.state.records); // returns records array
}
任意のアイデア?ありがとう! the docsから
ありがとうございました! –