React学习之扩展PureRenderMixin(三十三)

  • Post author:
  • Post category:其他



PureRenderMixin

的出现早于

React.PureComponent

,该插件属于历史保留,现在就使用

React.PureComponent

吧,这里也就提一下

如果你的

React

组件的渲染函数是一个纯函数也就是说对于相同的值返回一样的结果同时不影响元素局,在某些场景下,你可以利用这个插件来极大地提升性能。

var PureRenderMixin = require('react-addons-pure-render-mixin');
React.createClass({
  mixins: [PureRenderMixin],

  render: function() {
    return <div className={this.props.className}>foo</div>;
  }
});

在底层,该插件实现了

shouldComponentUpdate

,在这里面,它比较当前的

props



state

和接下来的

props



state

,当两者相等的时候返回false,不进行更新。



ES6

版本

import PureRenderMixin from 'react-addons-pure-render-mixin';
class FooComponent extends React.Component {
  constructor(props) {
    super(props);
    this.shouldComponentUpdate = PureRenderMixin.shouldComponentUpdate.bind(this);
  }

  render() {
    return <div className={this.props.className}>foo</div>;
  }
}`


注意

仅仅是浅比较对象。如果对象包含了复杂的数据结构,深层次的差异可能会产生误判。仅用于拥有简单

props



state

的组件,或者当你知道很深的数据结构已经变化了的时候使用

forceUpdate()

。或者,考虑使用

immutable objects

(不变数据)来帮助嵌套数据快速比较。

[

shouldComponentUpdate

会跳过更新整个组件子树。确保所有的子组件也是“纯粹的”]这套路不多说。


下一篇将讲

React

中的浅比较



版权声明:本文为qq_18661257原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。