它不会在 React FilePond 中同时上传超过 2 个文件?

its not uploading more than 2 files at same time in react filepond?

我想同时发送超过 100 个文件,但在网络调用中我可以看到同时上传的文件只有 2 个,所以我的整个上传速度越来越慢,是否有任何选项可以将上传计数更改为最少 20 个一次 ?

提前致谢

多亏了我。我找到了答案

我们可以在 filepond 中使用 maxParallelUploads={20}。

<FilePond
          allowMultiple={true}
          server={server(projId, reqId)}
          instantUpload={true}
          ref={pond}
          files={files}
          maxParallelUploads={20}
          onaddfile={onAddFile}
          labelFileProcessing='Your files are uploading'
          onremovefile={onRemoveFile}
          onprocessfile={onProcessFile}
          allowRevert={false}
          labelIdle={label}
        />