以强大的速度上传文件

Progress uploading files with formidable

我正在使用 node.js-expresss 后端和强大的包。我尝试实现一个进度条并决定使用 formidable & websockets:

const create = (req, res, io) => {
  logger.debug(`EXEC create material`)
  const form = new formidable.IncomingForm()
  form.encoding = 'utf-8'
  form.keepExtensions = true
  form.multiples = true
  form.maxFileSize = 600 * 1024 * 1024 // 600MB instead of 200MB (default value)
  // form.uploadDir = `${__dirname}/uploads`
  let oldValue = 0
  form.on('progress', (bytesReceived, bytesExpected) => {
    let currentValue = (parseFloat(bytesReceived) / parseFloat(bytesExpected)) * 100
    if ((currentValue - oldValue) > 1 || currentValue === 100) {
      oldValue = currentValue
      io.emit('FILE_UPLOAD_STATUS', currentValue)
      console.log('FILE_UPLOAD_STATUS', currentValue)
    }
  })
...

然而,一旦所有文件上传完毕,它似乎会处理文件并显示进度?文件可能很大,所以我在浏览器中看到一个空白的进度条,直到它在很短的时间内从 0% 到 100% 时结束。

我应该更改我的代码并从 xhr 请求中获取进度吗?

最后我决定成功将它移动到浏览器内的js。使用 axios 因为它是处理进度的 easiest/fastest 方式。这是我感兴趣的代码(React 应用程序):

axios.request({
      method: "POST",
      url: `${PRIVATE_API_ROOT}/materials`,
      data: formData,
      headers: { Authorization: `Bearer ${token}` },
      onUploadProgress: ProgressEvent => {
        this.setState({
          progressStatus: parseFloat(ProgressEvent.loaded / ProgressEvent.total * 100).toFixed(2),
        })
      }
    }).then(data => {
      this.setState({
        progressStatus: 100,
        loading: false,
        error: ''
      })
    }).catch(function (error) {
      //handle error
      this.setState({ error: error.message })
    });
```