What are React controlled components and uncontrolled components?

前端 未结 3 968
暗喜
暗喜 2020-11-28 04:15

What are controlled components and uncontrolled components in ReactJS? How do they differ from each other?

3条回答
  •  眼角桃花
    2020-11-28 04:37

    Controlled component is component that get the changed value from the callback function and uncontrolled component is component that have the one from the DOM. For example, When input value is changed,we can use onChange function in Controlled Component and also we can get the value using DOM like ref.

提交回复
热议问题