Filepond обрабатывает все файлы одним запросом - PullRequest
0 голосов
/ 22 июня 2019

Я использую response-filepond для обработки нескольких файлов Мне нужно отправить все файлы вместе в API в одном запросе, в отличие от нескольких запросов для каждого файла:

// Import the Image EXIF Orientation and Image Preview plugins
import FilePondPluginImageExifOrientation from 'filepond-plugin-image-exif-orientation'
import FilePondPluginImagePreview from 'filepond-plugin-image-preview'
import 'filepond-plugin-image-preview/dist/filepond-plugin-image-preview.css'

// Register the plugins
registerPlugin(FilePondPluginImageExifOrientation, FilePondPluginImagePreview)

function App() {
  console.log('TEST');
  const [files, setFiles] = useState([])
  console.log(files);
  return (
    <div className="App">
      <FilePond
        server='/api'
        files={files}
        allowMultiple={true}
        onupdatefiles={setFiles}
        labelIdle='Drag & Drop your files or <span class="filepond--label-action">Browse</span>'
      />
    </div>
  )
}

const rootElement = document.getElementById('root')
ReactDOM.render(<App />, rootElement)

Ссылка в песочнице здесь .

Как я могу это реализовать?

1 Ответ

0 голосов
/ 25 июня 2019

Не используйте свойство server. Вы можете сопоставить массив files с объектами файлов, files.map(item => item.file), затем передать элементы файла объекту FormData и отправить объект formData на сервер.

const formData = new FormData();
files.map(item => item.file).forEach(file => formData.append('my-file', file))

// send formData to server with `fetch` or `XMLHttpRequest`
...