Avatar notebook default
9篇文章 · 2651字 · 1人关注
  • Resize,w 360,h 240
    React diff算法

    传统的diff算法复杂度是O(n*3),而React diff算法改进了传统的diff算法,将算法复杂度降低到了O(n) diff 策略 DOM...

  • React组件的优化

    React在进行渲染的时候会经历初次渲染和更新渲染,首次渲染是没有真实的DOM操作快的,在更新渲染的时候,通过Virtual DOM,DOM D...

  • react-router-history详解

    history 的三种形式 browserHistory hashHistory createMemoryHistory 区别 使用hashHi...

  • Resize,w 360,h 240
    React生命周期解析

    React生命周期主要会经历这4个阶段:创建阶段、实例化阶段、更新阶段、销毁阶段 调用 React.createClass,即创建组件类的时候,...

    0.3 1746 0 28
  • Resize,w 360,h 240
    react-Middleware

    react单向数据流 点击button后,在回调中dispatch一个action,reducer收到 action后,更新state并通知vi...

  • Redux常用方法

    action创建函数 combineReducers 合并多个reducer,返回一个对象 createStore / applyMiddlew...

  • react-redux-Provider/connect

    Provider 只有一个子组件,没有或者超过一个均会报错 有store属性,可以得到redux里所有的state Provider里所有的子组...

  • the difference between using constructor vs getInitialState in React

    today when i want to write a demo to practice React,I met a problem abou...

  • use react,webpack,express build a easy project environment

    1.Initialization manual add .idea/ to .gitignore 2.build webpack environ...

文集作者