我是ReactJS的新手,我对状态概念和重新渲染组件有疑问。
在我的父组件中,我在构造函数中有这个状态:
this.state = {
locale : 'en',
messages : ENGLISH.messages,
softwareInfo : {
software_name : 'Test Default 1.0',
default_dash : 1,
color_theme: '#009900'
}
}
在Render中,我加载了一个名为DashAppBar的组件,通过了softwareInfo:
<DashAppBar softwareInfo = { this.state.softwareInfo} />
在DashAppBar构造中,我将该状态读作属性:
this.state = {
software_settings: props.softwareInfo,
[...]
}
然后我在栏中打印软件名称:
const software_name = (
<FormattedMessage
id="software_name"
defaultMessage="{software_name}"
values={{software_name:this.state.software_settings.software_name}}
/>
);
这项工作很好。
不幸的是,父组件进行了一次更改softwareInfo的AJAX调用:
success: function(result){
//window.software_settings = $.parseJSON(result);
//window.software_settings = result;
var settings = {
software_name:result.software_name,
default_dash:result.default_dash,
color_theme:result.color_theme
};
this.setState({softwareInfo : settings});
}
调用setState应该重新呈现组件,但子值保持与原始值相同,并且不显示从AjaxCall获取的新值。
错误在哪里?更改父状态应更新子项。
谢谢!
答案 0 :(得分:3)
问题是你只在子的构造函数中传递父级的状态。如果父级更新道具,您需要执行componentWillReceiveProps并更新子级状态或直接使用software_settings
作为道具。
例如,在子组件中:
const software_name = (
<FormattedMessage
id="software_name"
defaultMessage="{software_name}"
values={{software_name:this.props.software_settings.software_name}}
/>
);
componentWillReceiveProps(nextProps) {
this.setState({ software_settings: nextProps.software_settings});
}
答案 1 :(得分:0)
您需要在子组件上设置componentWillReceiveProps
挂钩以更新它。 https://reactjs.org/docs/react-component.html#componentwillreceiveprops