我有2个组件,Test
和Age
,他们都通过connect
获取数据。
其中Age
是Test
的子组件。
如果我在 Test
父组件的shouldComponentUpdate
return false ,
发现Test
确实不更新,但是其子组件Age
还是会更新(来自connect部分的数据)。
问题是,我如何阻止Age
不更新??
import {change} from 'actions'
class Age extends PureComponent{
constructor(props){
super(props);
this.add=this.add.bind(this);
}
add(){
this.props.change({
name:'haha',
age:this.props.age+1
});
}
render(){
return(
<div>
{this.props.names}:{this.props.age}
<input type="button"onClick={this.add} value="+"/>
</div>
)
}
}
const AgeConnect=connect((state)=>{
return state.iReducer;
},(dispatch)=>{
return {
change:(o)=>dispatch(change(o))
}
})(Age);
class Test extends Component{
constructor(props){
super(props)
}
shouldComponentUpdate(){
return false;
}
render(){
return(
<div>
{this.props.name}
<AgeConnect names={this.props.name} />
</div>
)
}
}
const TestConnect=connect((state)=>{
return state.iReducer;
},(dispatch)=>{
return {
change:(o)=>dispatch(change(o))
}
})(Test);
export default TestConnect;
你已经自己说了,阻止更新可以使用shouldComponentUpdate, 那么为什么不在Age组件中使用shouldComponentUpdate呢?
还有一点就是,为什么要在Age组件中进行connect呢? 为什么不能通过Test组件传递过来呢,如果通过Test传递,那么是不是就不会发生你的情况了。