как отправить файловые объекты на сервер в Laravel и v ie -fiepond - PullRequest
0 голосов
/ 25 мая 2020

Я использовал vue -filepond для внешнего приложения, а также как Laravel.

ссылка: https://pqina.nl/filepond/docs/patterns/frameworks/vue

My вопрос в том, когда вы не будете отправлять файл на сервер. Как я могу получить файловые объекты на стороне сервера? это мой тег filepond:

    <file-pond
            name="file"
            ref="pond"
            label-idle="Click here of drag your file..."
            v-bind:allow-multiple="false"
            imageCropAspectRatio="1:1"
            imageResizeTargetWidth="200"
            allowImagePreview="true"
            imagePreviewMinHeight="60"
            imagePreviewMaxHeight="200"
            imagePreviewHeight="80"
            imagePreviewMaxFileSize="100m"
            allowImageCrop="true"
            allowImageEdit="true"
            imageEditInstantEdit="false"
            imageEditAllowEdit="true"
            imageResizeTargetHeight="500"
            allowImageExifOrientation="true"
            stylePanelLayout="compact circle"
            styleLoadIndicatorPosition="center bottom"
            labelFileLoading="file is sending to server ..."
            labelFileProcessing="file is sending to server ..."
            styleButtonRemoveItemPosition="center bottom"
            styleImageEditButtonEditItemPosition="bottom center"
            accepted-file-types="image/jpeg, image/png"
            server="/api/user/avatar/upload"
            v-bind:files="myFiles"
            v-on:init="handleFilePondInit"
            v-on:addfilestart="handleOnaddfilestart"
            v-on:addfile="handleOnaddfile"
            v-on:processfileprogress="handleOnprocessfileprogress"
            v-on:addfileprogress="handleOnaddfileprogress"
            v-on:processfilestart="handleOnprocessfilestart"
            v-on:error="handleOnerror"
            v-on:processfileabort="handleOnprocessfileabort"
            v-on:processfilerevert="handleOnprocessfilerevert"
            v-on:processfile="handleOnprocessfile"
            v-on:updatefiles="handleOnupdatefiles"
    />

, но когда я go перехожу к пути / api / user / avatar / upload, я получаю нулевое значение в запросе $ request-> file ('file').

...