Filepond使用单个请求通过PHP上传多个文件

时间:2019-07-28 12:12:29

标签: php filepond

我试图弄清楚如何在上传多个文件时仅创建一个发布请求,FilePond在设置时将多个发布请求发送到服务器网址。

<input type="file" id="file2" name="filepond" data-max-files="10" required multiple>

<script>
    FilePond.registerPlugin(
        FilePondPluginImagePreview,
    );
    FilePond.registerPlugin(FilePondPluginFileMetadata);
    // get a reference to the input element
    const inputElement = document.querySelector('input[type="file"]');

    const pond = FilePond.create( inputElement, {
        acceptedFileTypes: ['video/mp4'],
        fileValidateTypeLabelExpectedTypesMap: {'video/mp4': '.mp4', 'video/mp4': '.MP4'},
        allowFileTypeValidation: true,
        instantUpload: true,
        allowMultiple: true,
        labelIdle: 'drag or drop files  <span class="filepond--label-action">browse </span>',
        maxFileSize: '15MB',
        maxTotalFileSize: '300MB',
        server: {
            url: 'upload.php',
            fetch: null,
            revert: null
    }});
<script>

我希望只使用一次upload.php文件,而不是文件数量。

result

希望找到答案。谢谢进阶

0 个答案:

没有答案