美文网首页
React Notes

React Notes

作者: yingjieg | 来源:发表于2018-03-22 10:25 被阅读8次
  1. When using a pure component, pay special attention to arrays and functions. Arrays and functions create new refs so it's up to you to create them only once and not during every render.

Functions

// Never do this
render() {
  return <MyInput onChange={this.props.update.bind(this)} />;
}

// Never do this
render() {
 return <MyInput onChange={() => this.props.update()} />;
}

// Instead do this
onChange() {
  this.props.doUpdate()
}

render() {
  return <MyInput onChange={this.onChange} />
}

Arrays

// Never do this, if there are no items, SubComponent will render every time!
render() {
  return <SubComponent items={this.props.items || []} />
}

// This will avoid re-rendering
const EMPTY_ARRAY = []
render() {
  return <SubComponent items={this.props.items || EMPTY_ARRAY } />
}

相关文章

  • React Study Notes

    This is the React study notes I made when I started to le...

  • React Notes

    When using a pure component, pay special attention to arr...

  • React Notes

    General: github.com/stephengriderproject link: https://gi...

  • 从代码实践潜入react内部,深入diff

    原文: Implementation Notes原译文: react的实现记录 本节是 stack reconci...

  • Notes On React - Three

    事件处理   React 中事件绑定属性的命名采用驼峰命名,且采用了 JSX 语法的时候需要传递一个函数作为时间处...

  • Notes On React - One

    安装   React依赖于react、react-dom这两个包。生成React项目可以通过包管理工具(如npm)...

  • Notes On React - Four

    Refs   在一般情况下,props 是父组件与子组件交互的唯一方式-传入新的 props 来重新渲染子组件。 ...

  • Notes On React - Two

    React 的生命周期   React组件 的生命周期大致可分成四个状态:  - Mounting:装配-组件实例...

  • react婴儿_notes

    视频地址: https://haoqicat.com/react-baby/1-react-show第二版:htt...

  • react bug notes

    Objects are not valid as a React child (found: object wit...

网友评论

      本文标题:React Notes

      本文链接:https://www.haomeiwen.com/subject/gkagqftx.html