在我的其他课程中,componentWillReceiveProps 工作得很好,但由于某种原因,它没有在这里触发。
项目视图.jsx
class ItemView extends React.Component {
constructor(props) {
super(props);
this.state = {
name: null,
rating: null,
sector: null,
location: null,
description: null,
image: "blank.png",
show: false
};
}
...
componentWillReceiveProps(nextProps) {
if(!nextProps.companyToRender) {
this.setState({
name: null,
rating: null,
sector: null,
location: null,
description: null,
image: "blank.png",
show: false
});
}
else {
var companyToRender = nextProps.companyToRender;
this.setState({
name: companyToRender.name,
rating: companyToRender.rating,
sector: companyToRender.sector,
location: companyToRender.location,
description: companyToRender.description,
image: companyToRender.image,
show: true
});
}
...
render () {
return(
<div>
...
<CommentBox show={this.state.show} companyToRender={this.state.name}/>
...
</div>
);
}
}
评论框.jsx
class CommentBox extends React.Component {
constructor(props) {
super(props);
this.state = {companyToRender: null};
}
componentWillReceiveProps(nextProps) {
this.setState({companyToRender: nextProps.companyToRender});
}
...
}
如果不传递任何内容,则传递给 itemView 的 prop 为 null,或者 ItemView 分配给它的数组。
componentWillReceiveProps() 仅在 state 的属性变为 null 时触发,而不是在它设置时触发。( ((null --> entry) 不起作用,但 (entry --> null) 起作用)。
我错过了什么吗?谢谢!
- 编辑:
(null --> entry) 更新状态,但不调用日志或任何后续的 componentWillRecieveProps()。(但 entry --> null 确实如此。)