老师您好:为什么我在input中输入值时父组件的render函数都会执行了两次?shouldComponentUpdate中的日志会执行多次?
来源:4-9 React 生命周期函数的使用场景
小铁子
2020-06-07
shouldComponentUpdate(nextProps, nextState) {
console.log(nextProps.content !== this.props.content);
if (nextProps.content !== this.props.content) {
return true;
}
else { return false; }
}
写回答
2回答
-
2bug
2020-07-11
你的index.js 应该是用了 React.StrictMode
它会渲染两次
112020-07-23 -
Dell
2020-06-07
只要数据变化 父子组件都会重新渲染的
00
相似问题