淘先锋技术网

首页 1 2 3 4 5 6 7

一、如图

二、详述

1. 这个生命周期函数是针对 组件而言的 父组件有如上的生命周期函数,同时子组件也有如上的生命周期函数

2. componentWillReceiveProps

3. shouldComponentUpdate生命周期函数

父组件中的render函数被执行的时候,子组件中的render函数会被重复执行,如果shouldComponentUpdate return false 子组件不会被反复更新

shouldComponentUpdate节约渲染  避免无谓的渲染

4. render函数,不适合做数据请求,如果做数据请求会导致 无限循环的情况。

需要放在执行一次的生命周期方法  

componentWillMount、componentDidMount

ajax请求放在DidMount or Constructor

未完,更新待续