I have just started using react to do projects, and I am very unskilled and a complete novice. Newbies can read it because what I write is very simple and straightforward. The project needs to implement the submission of attachments in the form, and the uploaded files are not saved separately and the interface is called. import { Form, Button, Upload } from 'antd'; import { UploadOutlined } from '@ant-design/icons'; const normFile = (e) => { console.log('Upload event:', e); if (Array.isArray(e)) { return e; } return e && e.fileList; }; const Demo = () => { const onFinish = (values) => { console.log('Received values of form: ', values); }; return ( <Form name="validate_other" onFinish={onFinish} initialValues={{ 'input-number': 3, 'checkbox-group': ['A', 'B'], rate: 3.5, }} > <Form.Item name="upload" label="Upload" valuePropName="fileList" getValueFromEvent={normFile} > <Upload name="logo" action="/upload.do" listType="picture"> <Button icon={<UploadOutlined />}>Click to upload</Button> </Upload> </Form.Item> </Form> ); }; ReactDOM.render(<Demo />, mountNode); Here is a form that contains a file upload function. (In fact, the code here is an example from Antd's official documentation. I only deleted the redundant parts and left the rest as is). The following is an explanation. First of all, we need to think about how to prevent files from being uploaded automatically. The antd document gives a method called beforeUpload. When the beforeUpload method returns false, the file upload will be stopped. The above will stop the automatic uploading of files. Next, we consider how to obtain the uploaded file and store it in the parameters passed to the backend. This part of the code is the upload code method, because we need to upload the file and submit it together with the form. So we make some modifications in this method and store the file in the formData object. Here we first explain the formData object, which is mainly used to transfer files to the backend. First create a new formData object, and then append the file into it, so that the uploaded file is already stored in formData. Other data in the form can also be stored in formData in the same way, and formData can be passed to the backend. There is another issue that needs attention at this time. fetch(url, { //fetch request method: 'POST', body: formData, }) or axios({ //axios method: 'post', url: url, data: formData, }) .then(function (response) { console.log(response); }) .catch(function (error) { console.log(error); }); It must be set to successfully pass parameters, otherwise the parameters will not be successfully passed when calling the interface. What does it look like to successfully carry parameters? You can click F12 on the relevant page to view, network, there will be a Form Data column at the bottom, which will display all the parameters passed. The final code is as follows: import { Form, Button, Upload } from 'antd'; import { UploadOutlined } from '@ant-design/icons'; const normFile = (e) => { console.log('Upload event:', e); if (Array.isArray(e)) { return e; } return e && e.fileList; }; const beforeUpload = ({fileList}) => { return false; } const Demo = () => { const onFinish = (values) => { console.log('Received values of form: ', values); }; return ( <Form name="validate_other" onFinish={onFinish} initialValues={{ 'input-number': 3, 'checkbox-group': ['A', 'B'], rate: 3.5, }} > <Form.Item name="upload" label="Upload" valuePropName="fileList" getValueFromEvent={normFile} > <Upload name="logo" beforeUpload={beforeUpload} > <Button icon={<UploadOutlined />}>Click to upload</Button> </Upload> </Form.Item> </Form> ); }; ReactDOM.render(<Demo />, mountNode); This is the end of this article about using antd's upload component in react to submit files together with the form. For more relevant react implementation of file form submission content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Summary of new usage of vi (vim) under Linux
>>: MySQL 8.0.11 installation tutorial with pictures and text
There are many read-write separation architecture...
Preface Last week, a colleague asked me: "Br...
About password strength verification: [root@mysql...
Table of contents Written in front Two-way encryp...
Preface I encountered a situation at work: In the...
Preface Hello everyone, this is the CSS wizard - ...
For record, it may be used in the future, and fri...
This article example shares the specific code of ...
Step 1: Get the MySQL YUM source Go to the MySQL ...
【1】<i></i> and <em></em> ...
After the docker installation is completed on the...
Table of contents mysql permission control Permis...
Table of contents introduce Link start Continue t...
Table of contents 1. parse 1.1 Rules for intercep...
Table of contents 1. Traversal Class 1. forEach 2...