LoginSignup
0
0

More than 5 years have passed since last update.

React.jsのprops、state

Posted at

props

  • 外部とのやり取りなどに使う
  • 内部では変更しない
  • 子コンポーネントのイベントハンドラなどに使う
  • getDefaultPropsで初期値を入れられる
  • propTypesで値のバリデーションを行うことができる

state

  • 内部情報
  • this.stateを直接変更するのではなく、this.setStateを使う
  • getInitialStateで初期値を入れられる
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0