1. defaultProps

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

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

constructor( ) {

 

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

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-24
  • 2022-12-23
  • 2021-07-07
猜你喜欢
  • 2021-12-23
  • 2022-12-23
  • 2021-05-27
  • 2022-01-21
  • 2022-12-23
  • 2022-12-23
  • 2021-05-04
相关资源
相似解决方案