React gets input value and submits 2 methods examples

React gets input value and submits 2 methods examples

Method 1: Use the target event attribute of the Event object provided by DOM to obtain the value and submit it

import React from 'react';
 
class InputDemo extends React.Component{
  state = {
    InputValue : "", //input value in input box};
 
  handleGetInputValue = (event) => {
    this.setState({
      InputValue : event.target.value,
    })
  };
 
  handlePost = () => {
    const {InputValue} = this.state;
    console.log(InputValue,'------InputValue');
    //Perform submission operations here, such as sending dispatch, etc.};
 
  render(){
    return(
      <div>
        <input
          value={this.state.InputValue}
          onChange={this.handleGetInputValue}
        />
        <button onClick={this.handlePost}>Submit</button>
      </div>
    )
  }
}
 
export default InputDemo;

The <input /> and <button /> here are both HTML tags. Of course, you can also use Antd's <Input /> and <Button /> components, and the content inside remains unchanged.

First, define InputValue:" in the state at the top of the component, and write value={this.state.InputValue} in the <input /> below. If the onChange event is removed, then nothing can be entered in the input box at this time, because

React believes that all states should be controlled by React's state. As long as input controls such as <input />, <textarea />, and <select /> are set with a value, their values ​​will always be based on the set value. If the value has not been changed, the value will not change.

In React, setState is required to update the content of a component, so you need to listen to the onChange event of the input box, get the content of the input box, and update the InputValue of the state through setState, so that the content of <input /> will be updated in real time.

Let's talk about the handleGetInputValue method of onChange, which uses the target event attribute of the DOM Event object:

The target event property returns the target node of the event (the node that triggered the event), such as the element, document, or window that generated the event.

For more details, see the W3C standard introduction

Method 2: Use React's ref to access DOM elements and submit values

Stateless component writing:

const InputDemo = () => {
  let inputValue;
  const handlePost = (e) => {
    if (e) e.preventDefault();
    const valueTemp = inputValue.value;
    console.log(valueTemp, '------valueTemp');
    //Perform submission operations here, such as sending dispatch, etc.};
 
  return (
    <div>
      <form onSubmit={handlePost}>
        <input
          ref={input => inputValue = input}
        />
        <button onClick={handlePost}>Submit</button>
      </form>
    </div>
  )
};
 
export default InputDemo;

Stateful component writing:

import React from 'react';
 
class InputDemo extends React.Component {
  handlePost = (e) => {
    if (e) e.preventDefault();
    const valueTemp = this.inputValue.value;
    console.log(valueTemp, '------valueTemp');
    //Perform submission operations here, such as sending dispatch, etc.};
 
  render() {
    return (
      <div>
        <form onSubmit={this.handlePost}>
          <input
            ref={input => this.inputValue = input}
          />
          <button onClick={this.handlePost}>Submit</button>
        </form>
      </div>
    )
  }
};
 
export default InputDemo;

Ref is a handle provided by React to safely access a DOM element or a component instance. We can add a ref attribute to the element, and then accept the handle of the element in the DOM tree in the callback function, which will be returned as the first parameter of the callback function.

In addition to these two writing methods, you can also use Antd's Form component to implement form functions. Portal: React uses Antd's Form component to implement form functions

Summarize

This is the end of this article about 2 ways to get input values ​​and submit them in React. For more relevant content about getting input values ​​and submitting them in React, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Use antd's form component in the react project to dynamically set the value of the input box
  • Solve the Can't resolve ''./locale'' problem in React after installing antd (recommended)
  • React implements dynamic switching of antd online themes
  • React configures the use of antd on-demand loading
  • Detailed explanation of adding css modules, sasss and antd using create-react-app
  • React uses antd's upload component to implement the file form submission function (complete code)

<<:  Detailed Introduction to Nginx Installation and Configuration Rules

>>:  5 Tips for Protecting Your MySQL Data Warehouse

Recommend

Let's talk in detail about the direction of slow SQL optimization in MySQL

Table of contents Preface SQL statement optimizat...

An article teaches you JS function inheritance

Table of contents 1. Introduction: 2. Prototype c...

Vue2.x - Example of using anti-shake and throttling

Table of contents utils: Use in vue: explain: Ima...

Summary of how to add root permissions to users in Linux

1. Add a user . First, use the adduser command to...

Pitfalls based on MySQL default sorting rules

The default varchar type in MySQL is case insensi...

Right align multiple elements in the same row under div in css

Method 1: float:right In addition, floating will ...

How to implement two-way binding function in vue.js with pure JS

Table of contents First, let's talk about the...

How to redraw Button as a circle in XAML

When using XAML layout, sometimes in order to make...

Detailed explanation of MySQL slow log query

Slow log query function The main function of slow...

CocosCreator Typescript makes Tetris game

Table of contents 1. Introduction 2. Several key ...

Solution to MySQL root password error number 1045

Stop MySQL Service Windows can right-click My Com...