• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

    webupoloader-bigFile: 结合 Webuploader 切片上传文件功能实现,网站在处理大文件上 ...

    原作者: [db:作者] 来自: 网络 收藏 邀请

    开源软件名称:

    webupoloader-bigFile

    开源软件地址:

    https://gitee.com/auroraLZDF/webupoloader-bigFile

    开源软件介绍:

    Laravel Bigfile Upload

    说明

    结合 Webuploader 切片上传文件功能实现,网站在处理大文件上传缓慢,或者不能上传的功能。

    Laravel版本

    >=5.5

    安装

    composer require auroralzdf/big-file-uploadphp artisan vendor:publish --provider='AuroraLZDF\Bigfile\BigfileServiceProvider'

    配置项

    执行完 php artisan vendor:publish --provider='AuroraLZDF\Bigfile\BigfileServiceProvider',会在 config 下面生成 bigfile.php 配置文件。配置项说明:

    <?phpreturn [    /*     |------------------------     |     文件每次切片尺寸     |------------------------     */    'chunk_size' => 1024 * 1024 * 2,    /*     |------------------------     |     允许上传文件最大尺寸     |------------------------     */    'max_size' => 1024 * 1024 * 1024,    /*     |------------------------     |     文件保存路径     |------------------------     */    'save_path' => 'upload/' . date('Y') . '/' . date('m') . '/',    /*     |------------------------     |     文件切片缓存路径     |------------------------     */    'tmp_path' => storage_path('app/public/tmp'),    /*     |------------------------     |     允许上传文件类型     |------------------------     */    'allow_type' => ['jpg', 'jpeg', 'gif', 'png', 'mp4', 'mp3', 'zip', 'apk', 'pdf', 'rar'],    /*     |------------------------     |     切片文件是否随机命名     |------------------------     */    'rand_name' => true,    /*     |------------------------     |     是否删除临时文件     |------------------------     */    'remove_tmp_file' => true,];

    访问路由

    Route::middleware('web')->get('/upload/bigfile', '\AuroraLZDF\Bigfile\Controllers\BigfileController@loadView')->name('bigfile_view');// bindings:不限制API访问次数限制,不需要 csrf_token 验证Route::middleware('bindings')->post('/upload/bigfile', '\AuroraLZDF\Bigfile\Controllers\BigfileController@upload')->name('bigfile_upload');

    ...


    鲜花

    握手

    雷人

    路过

    鸡蛋
    该文章已有0人参与评论

    请发表评论

    全部评论

    专题导读
    热门推荐
    阅读排行榜

    扫描微信二维码

    查看手机版网站

    随时了解更新最新资讯

    139-2527-9053

    在线客服(服务时间 9:00~18:00)

    在线QQ客服
    地址:深圳市南山区西丽大学城创智工业园
    电邮:jeky_zhao#qq.com
    移动电话:139-2527-9053

    Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap