React defaultProps

  1. defaultProps

    // 为属性指定默认值:
    Greeting.defaultProps = {
    name: 'Stranger'
    };

defaultProps 用来确保 this.props.name 在父组件没有特别指定的情况下,有一个初始值

constructor( ) {

 

} 的作用一 样,给数据赋初值

posted @ 2018-10-15 09:48  1点  阅读(2474)  评论(0编辑  收藏  举报