Я использую 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)
Ссылка в песочнице здесь .
Как я могу это реализовать?