mocheng / react-and-redux

《深入浅出React和Redux》代码

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

P25 2.3.1 装载过程的疑问

chocolatl opened this issue · comments

2.3.1 装载过程

  • constructor
  • getInitialState
  • getDefaultProps

为什么getInitialStategetDefaultProps之前被调用,初始化组件的State不是需要依赖于Prop的默认值吗?

这是一个错误,实际上getDefaultProps会在getInitialState之前被调用。