学以致用,react学习前奏准备阶段

ReactJS:支持React开发,提供JSX代码提示,高亮显示,ReactJS官方介绍


1、cdm→  componentDidMount: fn() { ... }

 
学以致用,react学习前奏准备阶段
cdm

2、cdup→  componentDidUpdate: fn(pp, ps) { ... }

 
学以致用,react学习前奏准备阶段
cdup

3、cs→  var cx = React.addons.classSet;

 
学以致用,react学习前奏准备阶段
cs

4、cwm→  componentWillMount: fn() { ... }

 
学以致用,react学习前奏准备阶段
cwm

5、cwr→  componentWillReceiveProps: fn(np) { ... }

 
学以致用,react学习前奏准备阶段
cwr

6、cwu→  componentWillUpdate: fn(np, ns) { ... }

 
学以致用,react学习前奏准备阶段
cwu

7、cwun→  componentWillUnmount: fn() { ... }

 
学以致用,react学习前奏准备阶段
cwun

8、cx→  cx({ ... })

 
学以致用,react学习前奏准备阶段
cx

9、fdn→  React.findDOMNode(...)

 
学以致用,react学习前奏准备阶段
fdn

10、fup→  forceUpdate(...)

 
学以致用,react学习前奏准备阶段
fup

11、gdp→  getDefaultProps: fn() { return {...} }

 
学以致用,react学习前奏准备阶段
gdp

12、gis→  getInitialState: fn() { return {...} }

 
学以致用,react学习前奏准备阶段
gis

13、ism→  isMounted()

 
学以致用,react学习前奏准备阶段
ism

14、props→  this.props.

 
学以致用,react学习前奏准备阶段
props

15、pt→  propTypes { ... }

 
学以致用,react学习前奏准备阶段
pt

16、rcc→  component skeleton

 
学以致用,react学习前奏准备阶段
rcc

17、refs→  this.refs.

 
学以致用,react学习前奏准备阶段
refs

18、ren→  render: fn() { return ... }

 
学以致用,react学习前奏准备阶段
ren

19、scu→  shouldComponentUpdate: fn(np, ns) { ... }

 
学以致用,react学习前奏准备阶段
scu

20、sst→  this.setState({ ... })

 
学以致用,react学习前奏准备阶段
sst

21、state→  this.state.

 
学以致用,react学习前奏准备阶段
state


作者:Loki_
链接:https://www.jianshu.com/p/45ac37cc0e34
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

相关推荐