Method 1: Use the target event attribute of the Event object provided by DOM to obtain the value and submit itimport 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 valuesStateless 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 SummarizeThis 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:
|
<<: Detailed Introduction to Nginx Installation and Configuration Rules
>>: 5 Tips for Protecting Your MySQL Data Warehouse
Table of contents Preface SQL statement optimizat...
Table of contents 1. Introduction: 2. Prototype c...
Table of contents utils: Use in vue: explain: Ima...
1. Add a user . First, use the adduser command to...
Preface According to the project needs, Vue-touch...
The default varchar type in MySQL is case insensi...
Get the current time: select current_timestamp; O...
Method 1: float:right In addition, floating will ...
Table of contents First, let's talk about the...
When using XAML layout, sometimes in order to make...
Slow log query function The main function of slow...
Table of contents 1. Introduction 2. Several key ...
Stop MySQL Service Windows can right-click My Com...
Table of contents Preface 1. ss command 2. Overal...
Table of contents 1. Why is JavaScript single-thr...