Как использовать Filepond с формой PHP и прикреплять файлы с постом - PullRequest
0 голосов
/ 25 сентября 2019

Я использую Filepond с фреймворком Laravel.

Мне нужно отправить файл, связанный со статьей.

HTML-код:

<form action="submit.php" enctype="multipart/form-data" method="POST">
      <input type="hidden" name="post_id" value="2" />
      <input type="file" class="filepond" name="filepond" data-max-files="1"/>
      <input type="submit" value="Upload" name="submit" class="btn btn-info" />
</form>

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

    // create a FilePond instance at the input element location
    const pond = FilePond.create( inputElement, {
        maxFiles: 1,
        allowBrowse: false,
        instantUpload: false,
    });
</script>

Как я могу использовать кнопку отправки формы, чтобы загрузить мои файлы и получить $_POST['post_id']?

...