使用 reactjs 上传多个文件

far*_*ooq 7 reactjs multiple-file-upload react-router react-native

我是新手reactjs,我正在尝试上传多个文件上传。我可以将文件作为 array 存储在 state 组件中。但是当我将数据传递给 axios post 方法时,它给我的文件列表为[object FileList]. 而且我无法遍历这些文件来存储 . 甚至我尝试了多种方法来上传多个文件,例如“react-Dropzone”。但没有帮助。

我的反应代码。

handleChange(event) {
  this.setState({ file: event.target.files })
}

async handleSubmit(e) {
  e.preventDefault()
  let res = await this.uploadFile(this.state.file);
}

async uploadFile(File){
  const formData = new FormData();

  formData.append('image', File)
  axios.post(UPLOAD_ENDPOINT, formData, {
    headers: {
      'content-type': 'multipart/form-data'
    }
  }).then(response => {
    console.log(response.data)
  });
}

render() {
  return (
    <form onSubmit={this.handleSubmit}>
      <input type="file" id="file" multiple name="file" onChange={this.handleChange} />
      <button type="submit" className="btn btn-info"> Update File </button>
    </form>
  )
}
Run Code Online (Sandbox Code Playgroud)

Sau*_*shi 17

event.target.files
Run Code Online (Sandbox Code Playgroud)

将为您提供一个文件列表,并将其附加到表单数据中,使用以下代码。

const files = event.target.files;

for (let i = 0; i < files.length; i++) {
    formData.append(`images[${i}]`, files[i])
}
Run Code Online (Sandbox Code Playgroud)

在服务器端,您将从请求对象/变量的“图像”键中获取所有图像

  • 又好又简单。不过,“files”也许是一个“const”。 (2认同)

小智 5

for (let i = 0; i < files.length; i++) { 
    formdata.append(`images[${i}]`, {
                    uri: pathOfFile,
                    name: fileName.jpg,
                    type: mimeType(eg. "image/jpeg")
    });
}
Run Code Online (Sandbox Code Playgroud)