を反応させるのにSETSTATEの作り方、私がSETSTATE私はポストコールには私のアプリケーションでは、同期プロセス
logChange(val) {
this.setState({
fetchIntentReport: {
startDate: this.state.fetchIntentReport.startDate,
endDate: this.state.fetchIntentReport.endDate,
intents: val.split(','),
},
});
this.props.fetchIntentReports({
startDate: this.state.fetchIntentReport.startDate,
endDate: this.state.fetchIntentReport.endDate,
intents: this.state.fetchIntentReport.intents,
});
}
一度のAPIからデータをフェッチする必要があり、値を設定したら(IE)を同期する非同期に変換する必要があります値がインテントに設定されている場合、私はredux経由でfetchIntentReports APIコールを呼び出す必要があります。
[SETSTATE](https://facebook.github.io/react/docs/react-component.html#setstate)メソッドがコールバックを受け入れます第2のパラメータとして使用する。それは本当に同期させる方法はありません。ドキュメントで説明されているように、それはもっと要求です。 – Leandro