React之PureComponent的使用作用
react避免重复渲染
react在渲染出的ui内部建立和维护了一个内层的实现方式,它包括了从组件返回的react元素。这种实现方式使得react避免了一些不必要的创建和关联dom节点,因为这样做可能比直接操作javascript对象更慢一些,它被称之为“虚拟dom”。
当一个组件的props或者state改变时,react通过比较新返回的元素和之前渲染的元素来决定是否有必要更新实际的dom。当他们不相等时,react会更新dom。
在一些情况下,你的组件可以通过重写这个生命周期函数shouldcomponentupdate来提升速度, 它是在重新渲染过程开始前触发的。 这个函数默认返回true,可使react执行更新:
shouldcomponentupdate(nextprops, nextstate) { return true; }
举例
如果想让组件只在props.color
或者state.count
的值变化时重新渲染,你可以像下面这样设定shouldcomponentupdate
:
class counterbutton extends react.component { constructor(props) { super(props); this.state = {count: 1}; } shouldcomponentupdate(nextprops, nextstate) { if (this.props.color !== nextprops.color) { return true; } if (this.state.count !== nextstate.count) { return true; } return false; } render() { return ( <button color={this.props.color} onclick={() => this.setstate(state => ({count: state.count + 1}))}> count: {this.state.count} </button> ); } }
在以上代码中,shouldcomponentupdate
只检查props.color
和state.count
的变化。如果这些值没有变化,组件就不会更新。当你的组件变得更加复杂时,你可以使用类似的模式来做一个“浅比较”,用来比较属性和值以判定是否需要更新组件。这种模式十分常见,因此react提供了一个辅助对象来实现这个逻辑 - 继承自react.purecomponent
。以下代码可以更简单的实现相同的操作:
class counterbutton extends react.purecomponent { constructor(props) { super(props); this.state = {count: 1}; } render() { return ( <button color={this.props.color} onclick={() => this.setstate(state => ({count: state.count + 1}))}> count: {this.state.count} </button> ); } }
purecomponent
原理
当组件更新时,如果组件的 props 和 state 都没发生改变, render 方法就不会触发,省去 virtual dom 的生成和比对过程,达到提升性能的目的。具体就是 react 自动帮我们做了一层浅比较:
if (this._compositetype === compositetypes.pureclass) { shouldupdate = !shallowequal(prevprops, nextprops) || !shallowequal(inst.state, nextstate); }
而 shallowequal 又做了什么呢?会比较 object.keys(state | props) 的长度是否一致,每一个 key 是否两者都有,并且是否是一个引用,也就是只比较了第一层的值,确实很浅,所以深层的嵌套数据是对比不出来的。
问题
大部分情况下,你可以使用react.purecomponent而不必写你自己的shouldcomponentupdate,它只做一个浅比较。但是由于浅比较会忽略属性或状态突变的情况,此时你不能使用它。
class listofwords extends react.purecomponent { render() { return <div>{this.props.words.join(',')}</div>; } } class wordadder extends react.component { constructor(props) { super(props); this.state = { words: ['marklar'] }; this.handleclick = this.handleclick.bind(this); } handleclick() { // this section is bad style and causes a bug const words = this.state.words; words.push('marklar'); this.setstate({words: words}); } render() { return ( <div> <button onclick={this.handleclick} /> <listofwords words={this.state.words} /> </div> ); } }
在listofwords中,this.props.words是wordadder中传入的其state的一个引用。虽然在wordadder的handelclick方法中被改变了,但是对于listofwords来说,其引用是不变的,从而导致并没有被更新。
解决方法
在上面的问题中可以发现,当一个数据是不变数据时,可以使用一个引用。但是对于一个易变数据来说,不能使用引用的方式给到purecomponent。简单来说,就是我们在purecomponent外层来修改其使用的数据时,应该给其赋值一个新的对象或者引用,从而才能确保其能够进行重新渲染。例如上面例子中的handleclick可以通过以下几种来进行修改从而确认正确的渲染:
handleclick() { this.setstate(prevstate => ({ words: prevstate.words.concat(['marklar']) })); }
或者
handleclick() { this.setstate(prevstate => ({ words: [...prevstate.words, 'marklar'], })); };
或者针对对象结构:
function updatecolormap(oldobj) { return object.assign({}, oldobj, {key: new value}); }
immutable.js
immutable.js是解决这个问题的另一种方法。它通过结构共享提供不可突变的,持久的集合:
- 不可突变:一旦创建,集合就不能在另一个时间点改变。
- 持久性:可以使用原始集合和一个突变来创建新的集合。原始集合在新集合创建后仍然可用。
- 结构共享:新集合尽可能多的使用原始集合的结构来创建,以便将复制操作降至最少从而提升性能。
// 常见的js处理 const x = { foo: 'bar' }; const y = x; y.foo = 'baz'; x === y; // true // 使用 immutable.js const somerecord = immutable.record({ foo: null }); const x = new somerecord({ foo: 'bar' }); const y = x.set('foo', 'baz'); x === y; // false
总结
purecomponent 真正起作用的,只是在一些纯展示组件上,复杂组件使用的话shallowequal 那一关基本就过不了。另外在使用的过程中为了确保能够正确的渲染,记得 props 和 state 不能使用同一个引用哦。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: php将textarea数据提交到mysql出现很多空格的解决方法
下一篇: 基于DevExpress的SpreadsheetControl实现对Excel的打开、预览、保存、另存为、打印(附源码下载)
推荐阅读