zl程序教程

您现在的位置是:首页 >  前端

当前栏目

React defaultProps

2023-09-11 14:22:19 时间
  1. defaultProps

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

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

constructor( ) {

 

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