superius/filepond
Composer 安装命令:
composer require superius/filepond
包简介
Laravel backend module for filepond uploads
README 文档
README
Laravel FilePond Backend
An all in one Laravel backend for FilePond
We currently support the `process` and `revert` methods and are securing those via the Laravel encryption/decryption methods.
:rocket: Be up and running in 2 minutes
Laravel setup
Require this package in the composer.json of your Laravel project.
composer require superius/filepond
If you need to edit the configuration, you can publish it with:
php artisan vendor:publish --provider="Superius\Filepond\FilepondServiceProvider"
// Get the temporary path using the serverId returned by the upload function in `FilepondController.php`
$filepond = app(\Superius\Filepond\Filepond::class);
$disk = config('filepond.temporary_files_disk');
$path = $filepond->getPathFromServerId($serverId);
$fullpath = Storage::disk($disk)->get($filePath);
// Move the file from the temporary path to the final location
$finalLocation = public_path('output.jpg');
\File::move($fullpath, $finalLocation);
External storage
You can use any Laravel disk as the storage for temporary files. If you use a different disk for the temporary files and the final location, you will need to copy the file from the temporary location to the new disk then delete the temporary file yourself.
If you are using the default local disk, make sure the /storage/app/filepond directory exists in your project and is writable.
Filepond client setup
This is the minimum Filepond JS configuration you need to set after installing filepond.
FilePond.setOptions({
server: {
url: '/filepond/api',
process: '/process',
revert: '/process',
patch: "?patch=",
headers: {
'X-CSRF-TOKEN': '{{ csrf_token() }}'
}
}
});
superius/filepond 适用场景与选型建议
superius/filepond 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 3.36k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2022 年 04 月 19 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 superius/filepond 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 superius/filepond 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 3.36k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 10
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-04-19