宝塔服务器面板,一键全能部署及管理,送你10850元礼包,点我领取

下面由Laravel教程栏目给大家介绍如何把开发中常用class的整合成了一个包,避免每次重复复制粘贴的方法,希望对需要的朋友有所帮助!

laravel-quick

laravel-quick(github 地址:https://github.com/youyingxiang/laravel-quick.git) 封装了一些我们开发中常见的工具,使开发变得更高效

主要包含翻译了验证的语言包提示根据 Symfony\\Component\\HttpFoundation\\Response 为状态码的接口格式异常类处理集成基于 redis 的各种缓存操作service,repository,trait的 artisan 命令生成;安装composer require yxx/laravel-quicklinux 和 mac
php artisan vendor:publish --provider="Yxx\\\\LaravelQuick\\\\LaravelQuickServiceProvider"windows
php artisan vendor:publish --provider="Yxx\\LaravelQuick\\LaravelQuickServiceProvider"怎么使用异常使用例子

use Yxx\\LaravelQuick\\Exceptions\\Api\\ApiNotFoundException;// 请求参数错误throw new ApiRequestException();// 404 未找到throw new ApiNotFoundException();// 系统错误throw new ApiSystemException()// 未授权throw new ApiUnAuthException()自定义错误继承Yxx\\LaravelQuick\\Exceptions自己参照对应代码自定义

api 接口使用

use Yxx\\LaravelQuick\\Traits\\JsonResponseTrait// 成功return $this->success("消息",['name'=>"张三"]);// 失败return $this->error("错误");// 自定义return $this->apiResponse(Response::HTTP_BAD_GATEWAY,"502错误");

缓存的使用(封装了 redis 的一些方法)

use Yxx\\LaravelQuick\\Facades\\CacheClient;CacheClient::hSet("test","1","张三");CacheClient::hGet("test","1");CacheClient::lPush("test","1");具体参考Yxx\\LaravelQuick\\Services\\CacheService里面的方法....

artisan 命令创建 Trait php artisan quick:create-trait test创建 Service php artisan quick:create-service Test/TestService创建 Repository php artisan quick:create-repository Test