Unable to upload images with React dropzone
问题 I am using react-dropzone to get files on my react application and i am trying to upload these multiple images using axios. Backend is in mongo+express. But, for some reasons, image is not being received at the backend. MY react code is: const data = new FormData(); data.append("title", entry.title); entry.images.forEach((image, index) => { console.log(image) /*This prints out File lastModified: 1599303132607 name: "name.jpg" path: "name.jpg" size: 41142 type: "image/jpeg"