#getDefaultProps

React的getDefaultProps和getInitialState

getDefaultProps不是获取默认props,而是设置默认props,主要用在ES5的React写法中getInitialState不是获取默认State,而是设置初始的state,主要是用在ES5的React写法中下面是ES5和ES6的写法对比//ES5写法varVideo=React.createClass...