React 16.3-alpha已经发布。这次发布都有哪些新特性呢,我们来一起看看。
目录
- 新的Context API
- 新的声明周期方法
- Static Mode
- AsyncMode
- 新版React Developer Tools
总结
对于小的开发没什么,注意生命周期的变化。
要被废弃的方法:
componentWillMount
— 使用componentDidMount
代替componentWillUpdate
— 使用componentDidUpdate
代替componentWillReceiveProps
–使用一个新的方法:static getDerivedStateFromProps
来代替。