search
HomeWeb Front-endJS TutorialDetailed explanation of react controlled components and uncontrolled components

This article mainly introduces a brief discussion of react controlled components and uncontrolled components (summary). Now I share it with you and give it a reference.

We all know that there are many web components that can be changed by user interaction, such as: ,

1. An component that maintains the value in its own state cannot be modified from the outside;

2. An component that sets value through props can only be updated through external control.

I recently encountered a problem when using a react-based ant-design UI component produced by Ant Financial. When editing the page, the input box will display the data before saving, but using defaultValue does not work. , the input box is always empty instead of the specific incoming value. The code related to the text box in the specific editing page is as follows:

    ... //render方法上面的内容省略
 <FormItem
   label="问题描述:"
   hasFeedback
   {...props.formItemLayout}
 >
  <Input type="textarea" defaultValue={props.value}/>
</FormItem>
      //render下面的内容省略
      ...

After passing value props to the component to which the code segment belongs, the default value in the text box is always empty, because in the state where the page is located, value The initial value of the corresponding state is empty, causing the value in the state corresponding to value to be changed after a subsequent asynchronous request is successful, and it will still be displayed as empty.

Google the specific reason. It turns out that once the defaultValue in the form component of React is passed, subsequent changes to the defaultValue will have no effect and will be ignored.

Specifically, this is a react uncontrolled component. Its state is controlled within the input react and is not controlled by the caller. This can be achieved using controlled components.

Let’s talk about this controlled component and uncontrolled component. They are all based on react’s form component elements. For details, you can also refer to the react official website for this introduction

Controlled component

Formally speaking, a controlled component is to add a value attribute to a form component; an uncontrolled component is a component that does not add a value attribute; the form of a controlled component is as follows Form:

render: function() {
  return <input type="text" value="Hello!" />;
 }

The form component element with the value attribute added will not maintain its own state internally. Once the value of the component is set to a specific value, it will always be this value, so the caller needs to control the component. value changes.

This way of writing brings a problem: any value entered by the user will not work in the user interaction of the rendered input component, and the value in the input box is always Hello!. This is inconsistent with the behavior of input in HTML.

For this reason, in order to control the component, you need to be able to control the value of the input component. You need to use its internal state, that is, a state must be maintained inside the component to cooperate with the onChange and setState methods of the input component. Complete the control of the component; for example, the above form can be encapsulated into an inputItem component, which maintains a state internally. The specific code is as follows:

 export default class InputItem extends React.Component{
  constructor(props){
    super(props);
    this.state = {
      value: ""
    }
  }

  componentWillReceiveProps(nextProps){
    this.setState({
      value: nextProps.value
    })
  }

  _onChange(evt){
    this.setState({
      value: evt.target.value
    })
  }

  render(){
    return (
      <input type="text" 
        value={this.state.value} 
        onChange={this._onChange.bind(this)}/>
    );
  }
}

In this way, the InputItem component can be called externally as follows:

<InputItem value={this.state.userName} />

In this way, you can control the Input component of react. In fact, you need to use react's stateful component to complete it, because the stateful component can maintain state internally.

Uncontrolled components

In terms of expression, form component elements that do not add a value attribute in react are uncontrolled components. The expression is as follows:

<input type="text" />

The uncontrolled component maintains its own state internally during the underlying implementation; this shows that any value input by the user can be reflected on the element.

Summary

When using react component, you will encounter controlled components or uncontrolled components; at present, react components recommend using stateless components, but using this There is no big problem when using uncontrolled components to implement react components. If you need to control controlled elements, there will be problems, as shown in:

`Controlled components` need to actively maintain an internal state Stateful, while `stateless component` does not need to maintain the state of the component, so the two conflict.
So, controlled elements cannot be created using stateless components.

In view of the characteristics of controlled components and uncontrolled components, the application places of the two are also different, mainly manifested in:

  1. Controlled elements are generally used in Situations where its initial value needs to be set dynamically; for example, when editing some form information, the input form element needs to initially display a certain value returned by the server and then edit it.

  2. Uncontrolled elements are generally used when there is no dynamic initial value information; for example, when creating information in a form, the input form elements have no initial value and require user input

The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.

Related articles:

New features of webpack 4.0.0-beta.0 version (detailed tutorial)

Vue components and Route Life cycle (detailed tutorial)

Use SpringMVC to solve vue cross-domain requests

The above is the detailed content of Detailed explanation of react controlled components and uncontrolled components. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
react中canvas的用法是什么react中canvas的用法是什么Apr 27, 2022 pm 03:12 PM

在react中,canvas用于绘制各种图表、动画等;可以利用“react-konva”插件使用canvas,该插件是一个canvas第三方库,用于使用React操作canvas绘制复杂的画布图形,并提供了元素的事件机制和拖放操作的支持。

react中antd和dva是什么意思react中antd和dva是什么意思Apr 21, 2022 pm 03:25 PM

在react中,antd是基于Ant Design的React UI组件库,主要用于研发企业级中后台产品;dva是一个基于redux和“redux-saga”的数据流方案,内置了“react-router”和fetch,可理解为应用框架。

React是双向数据流吗React是双向数据流吗Apr 21, 2022 am 11:18 AM

React不是双向数据流,而是单向数据流。单向数据流是指数据在某个节点被改动后,只会影响一个方向上的其他节点;React中的表现就是数据主要通过props从父节点传递到子节点,若父级的某个props改变了,React会重渲染所有子节点。

react中为什么使用nodereact中为什么使用nodeApr 21, 2022 am 10:34 AM

因为在react中需要利用到webpack,而webpack依赖nodejs;webpack是一个模块打包机,在执行打包压缩的时候是依赖nodejs的,没有nodejs就不能使用webpack,所以react需要使用nodejs。

react是组件化开发吗react是组件化开发吗Apr 22, 2022 am 10:44 AM

react是组件化开发;组件化是React的核心思想,可以开发出一个个独立可复用的小组件来构造应用,任何的应用都会被抽象成一颗组件树,组件化开发也就是将一个页面拆分成一个个小的功能模块,每个功能完成自己这部分独立功能。

react和reactdom有什么区别react和reactdom有什么区别Apr 27, 2022 am 10:26 AM

react和reactdom的区别是:ReactDom只做和浏览器或DOM相关的操作,例如“ReactDOM.findDOMNode()”操作;而react负责除浏览器和DOM以外的相关操作,ReactDom是React的一部分。

react中forceupdate的用法是什么react中forceupdate的用法是什么Apr 19, 2022 pm 12:03 PM

在react中,forceupdate()用于强制使组件跳过shouldComponentUpdate(),直接调用render(),可以触发组件的正常生命周期方法,语法为“component.forceUpdate(callback)”。

react与vue的虚拟dom有什么区别react与vue的虚拟dom有什么区别Apr 22, 2022 am 11:11 AM

react与vue的虚拟dom没有区别;react和vue的虚拟dom都是用js对象来模拟真实DOM,用虚拟DOM的diff来最小化更新真实DOM,可以减小不必要的性能损耗,按颗粒度分为不同的类型比较同层级dom节点,进行增、删、移的操作。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.