Based on the names of your components, I assume that you want to upload files using ajax.
To upload files with ajax, you need to postFormData
instead of JSON objects.
Here is the code:
const handleUploader = (file)=>{
const fd = new FormData();
fd.append('file', file);
axios({
method: 'POST',
url: `https://url_to_backend`,
data: fd,
onUploadProgress: (progressEvent) => {
const uploadProgress = Math.round((progressEvent.loaded * 100) / progressEvent.total);
console.log("uploadProgress",uploadProgress);
}
}).then(res => {
// after success
}).catch(err => {
// handle error
})
}
In case this code is intended for real world use (production) I would advise using a library to take care of the client-side file upload. There are many factors and edge-cases to handle for it to work cross-browser and in different scenarios.
Can recommend react-uploady. You can use the grouped prop to allow multiple files in the same request:
import React from "react";
import Uploady from "@rpldy/uploady";
import UploadButton from "@rpldy/upload-button";
const App = () => (<Uploady
grouped
destination={{ url: "https://my-server/upload" }}>
<UploadButton/>
</Uploady>);
Our community is visited by hundreds of web development professionals every day. Ask your question and get a quick answer for free.
Find the answer in similar questions on our website.
Do you know the answer to this question? Write a quick response to it. With your help, we will make our community stronger.
PHP (from the English Hypertext Preprocessor - hypertext preprocessor) is a scripting programming language for developing web applications. Supported by most hosting providers, it is one of the most popular tools for creating dynamic websites.
The PHP scripting language has gained wide popularity due to its processing speed, simplicity, cross-platform, functionality and distribution of source codes under its own license.
https://www.php.net/
React is currently the leader in JavaScript UI frameworks. First, the Facebook developers started working on this to make their job easier. An app called Facebook Ads grew very quickly, which meant complex management and support. As a result, the team began to create a structure that would help them with efficiency. They had an early prototype before 2011, and two years later, the framework was open source and available to the public. It is currently used by many business giants: AirBNB, PayPal, Netflix, etc.
https://reactjs.org/
Welcome to the Q&A site for web developers. Here you can ask a question about the problem you are facing and get answers from other experts. We have created a user-friendly interface so that you can quickly and free of charge ask a question about a web programming problem. We also invite other experts to join our community and help other members who ask questions. In addition, you can use our search for questions with a solution.
Ask about the real problem you are facing. Describe in detail what you are doing and what you want to achieve.
Our goal is to create a strong community in which everyone will support each other. If you find a question and know the answer to it, help others with your knowledge.