我使用的是react
,material-ui
,react-router
,reduxForm
和redux
。
在我的viewComponent A中,我单击一个按钮以推送到viewComponent B.
在viewComponent B的componentWillMount
或componentDidMount
中,我发送了一个get请求。
viewComponent B中有一个reduxForm组件C,
具有get请求成功的initialValues的组件C减少。
我的问题是: viewComponent A中有三个按钮。 当我按下按钮1时,ReduxForm组件C没有initialValues。
当我按下按钮2时,ReduxForm组件C没有按钮1的initialValues。
在我看来,ReduxForm在请求完成之前呈现。
如何发送initialValues请求?我什么时候发送initialValues请求?