0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Reactの第一歩。renderって何なの?(メモ)

Posted at

個人的なメモ帳代わり。自分と同様の疑問を持った方は参考にどうぞ。Qiitaの記事を書く練習も兼ねて。理解が深くなれば追記予定。

Q.そもそもレンダリングとは何ぞや?

調べる。

A.要するに指定したリソースをブラウザ画面に表示すること。

レンダリングの仕組みなどについては以下の参考URLから。

参考URL

・Reactには二種類のrenderメソッドがある。

1.ReactDOM.render()

Reactエレメントをドキュメント(生成されるhtml等の文書)にレンダリングするもの。

2.Reactコンポーネントのクラスで呼び出されているrender

JSXなどで定義されたReactエレメントを返す処理を行っている。

両メソッドとも、複数のコンポーネントを返すことは出来ない。

レンダリングが目的のメソッドなので、その他の処理を持たせないようする。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?