Part 20 Uncontrolled way React forms | React Validations | useRef hook
Form validations:-
1. Controlled way
2. The uncontrolled way React forms and Validations
In React, an uncontrolled component is a form element whose value is not controlled by React but rather by the DOM. This means that the state of the component is managed by the DOM itself rather than React.
Uncontrolled components are generally easier to implement and require less code, but they can be more error-prone as they rely on the DOM to maintain state.
- using useRef() hook, we can implement an uncontrolled way.
Example for Uncontrolled way. useRef() hook will be used to handle the form elements.
1. Create one useRef hook for each input control.
const firstNameRef = useRef();
2. Assign the reference variable to the input using "ref" property.
input ref={firstNameRef}
3. To get the value from the reference object, we can get it from the current property as shown below.
const firstName = firstNameRef.current.value;
In this example, we are using the useRef hook to get a reference to the username and password input fields. When the form is submitted, we get the values of these input fields directly from the DOM using the value property and create a form data object. The form data object is then logged to the console.
Note that we are not using any state variables to manage the state of the form fields. Instead, the DOM is responsible for maintaining the state of these fields.
Что делает видео по-настоящему запоминающимся? Наверное, та самая атмосфера, которая заставляет забыть о времени. Когда вы заходите на RUVIDEO, чтобы посмотреть онлайн «Part 20 Uncontrolled way React forms | React Validations | useRef hook», вы рассчитываете на нечто большее, чем просто загрузку плеера. И мы это понимаем. Контент такого уровня заслуживает того, чтобы его смотрели в HD 1080, без дрожания картинки и бесконечного буферизации.
Честно говоря, Rutube сегодня — это кладезь уникальных находок, которые часто теряются в общем шуме. Мы же вытаскиваем на поверхность самое интересное. Будь то динамичный экшн, глубокий разбор темы от любимого автора или просто уютное видео для настроения — всё это доступно здесь бесплатно и без лишних формальностей. Никаких «заполните анкету, чтобы продолжить». Только вы, ваш экран и качественный поток.
Если вас зацепило это видео, не забудьте взглянуть на похожие материалы в блоке справа. Мы откалибровали наши алгоритмы так, чтобы они подбирали контент не просто «по тегам», а по настроению и смыслу. Ведь в конечном итоге, онлайн-кинотеатр — это не склад файлов, а место, где каждый вечер можно найти свою историю. Приятного вам отдыха на RUVIDEO!
Видео взято из открытых источников Rutube. Если вы правообладатель, обратитесь к первоисточнику.