标签:重要 一个 标题 ret text 创建 inpu turn 传递数据
1.react父子组件之间通过props传递数据,通过callback回调子组件向父组件通信,
我们看下面的伪代码:
class TodoListDemo extends React.Component { constructor(props) { super(props) // 状态(数据)提升 this.state = { list: [ { id: ‘id-1‘, title: ‘标题1‘ }, { id: ‘id-2‘, title: ‘标题2‘ }, { id: ‘id-3‘, title: ‘标题3‘ } ], footerInfo: ‘底部文字‘ } } render() { return <div> <Input submitTitle={this.onSubmitTitle}/> <List list={this.state.list}/> {/* 我们发现list数据的渲染,会引起Footer组件的渲染,其实Footer组件的并没有必要渲染 */} {/* React 默认:父组件有更新,子组件则无条件也更新!!! 性能优化对于 React 更加重要! SCU 一定要每次都用吗?—— 需要的时候才优化 */} <Footer text={this.state.footerInfo} length={this.state.list.length} />
</div> } onSubmitTitle = (title) => { this.setState({ list: this.state.list.concat({ id: `id-${Date.now()}`, title }) }) } } export default TodoListDemo
2.解决方案:
(1)可以使用 shouldComponentUpdate 阻止子组件渲染
数据结构简单的时候直接对比可以,但是如果数据结构复杂的时候,不适合深度比较,所以SCU一定是需要的时候再优化
shouldComponentUpdate(nextProps, nextState) { if (nextProps.text !== this.props.text || nextProps.length !== this.props.length) { return true // 可以渲染 } return false // 不重复渲染 }
标签:重要 一个 标题 ret text 创建 inpu turn 传递数据
原文地址:https://www.cnblogs.com/zhuMother/p/13236204.html