Multiple file upload with reactjs
问题 I'm new to reactjs and I'm trying to upload multiple file upload. I can able to store the files in state component as array . But When I'm passing the data to axios post method, it gives me the list of files as [object FileList] . And I couldn't able to traverse through that files to store . Even I tried multiple methods to upload multiple files like 'react-Dropzone`. But didn't help. My react Code . handleChange(event) { this.setState({ file: event.target.files }) } async handleSubmit(e) { e