我正在研究React应用程序,并使用Redux进行状态管理。
我有一个步进器,该步进器分3步,有3种形式。在最后一步,我必须调用API的发布请求。我在想什么是具有包含所有以3种形式分布的字段的redux状态。现在,我可以在每个步进器表单上的“下一步”按钮上更新redux状态,但是当我回来时,我看到一个空表单。
下面是到目前为止我尝试过的代码,但不知道如何将其与文本字段绑定。
componentWillMount() {
// This method runs when the component is first added to the page
this.setState({
assetName: this.props.asset.assetName,
assetDesc: this.props.asset.assetDesc,
path: this.props.asset.path,
classification: this.props.asset.classification
});
console.log(this.state.assetName);
}
state = {
assetName :'',
assetDesc:'',
path:'',
classification:'',
};
谢谢