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学んだこと①

Posted at

学んだこと

結局DOMってなに?

DOMとは、Document Object Modelのことで、HTMLにアクセスする窓口のこと
Reactを使わない画面描画をすると、このHTTMLにアクセスする窓口を直接編集して、HTMLを描画させる必要があるので、
コストが高い
→あるdiv要素を変更したい、
→特定のdivタグのDOM要素を取得・変更する

ではどうするのか?

そこで、現れたのが仮想DOM。
ReactがDOMツリーをJavascriptのオブジェクトとして扱うことで、ただのデザインではなく。窓口の状態を持ったUIを作ることができる。

なぜ、それが実現できるのか?

仮想DOMにすることで、DOMの情報・状態をJavascript内で完結・管理することができるから

参考文献

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?