下面由Laravel教學專欄給大家介紹如何把開發中常用class的整合成了一個包,避免每次重複複製貼上的方法,希望對需要的朋友有幫助!
laravel-quick(github 網址:https://github.com/youyingxiang/laravel-quick.git)封裝了一些我們開發中常見的工具,使開發變得更有效率
composer require yxx/laravel-quick
#php artisan vendor:publish --provider="Yxx\\LaravelQuick\\LaravelQuickServiceProvider"
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自己参照对应代码自定义
use Yxx\LaravelQuick\Traits\JsonResponseTrait// 成功return $this->success("消息",['name'=>"张三"]);// 失败return $this->error("错误");// 自定义return $this->apiResponse(Response::HTTP_BAD_GATEWAY,"502错误");
use Yxx\LaravelQuick\Facades\CacheClient;CacheClient::hSet("test","1","张三");CacheClient::hGet("test","1");CacheClient::lPush("test","1");具体参考Yxx\LaravelQuick\Services\CacheService里面的方法....
以上是把laravel開發中常用class的整合成一個包,避免每次重複複製貼上的詳細內容。更多資訊請關注PHP中文網其他相關文章!