为什么在下面的伪代码示例中,当 Container 更改 foo.bar 时,Child 不会重新渲染?
Container {
handleEvent() {
this.props.foo.bar = 123
},
render() {
return <Child bar={this.props.foo.bar} />
}
Child {
render() {
return <div>{this.props.bar}</div>
}
}
即使我forceUpdate()
在修改Container中的值后调用,Child仍然显示旧值。