您好,登录后才能下订单哦!
这篇文章给大家分享的是有关如何把laravel开发中常用class的整合成一个包的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
laravel-quick(github 地址:https://github.com/youyingxiang/laravel-quick.git) 封装了一些我们开发中常见的工具,使开发变得更高效
主要包含翻译了验证的语言包提示
根据 Symfony\Component\HttpFoundation\Response 为状态码的接口格式
异常类处理
集成基于 redis 的各种缓存操作
service,repository,trait的 artisan 命令生成;
composer require yxx/laravel-quick
linux 和 macphp artisan vendor:publish --provider="Yxx\\LaravelQuick\\LaravelQuickServiceProvider"
windowsphp 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里面的方法....
创建 Trait php artisan quick:create-trait test
创建 Service php artisan quick:create-service Test/TestService
创建 Repository php artisan quick:create-repository Test
感谢各位的阅读!关于“如何把laravel开发中常用class的整合成一个包”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。