La colonne tutorielle suivante de Laravel vous présentera comment intégrer les classes couramment utilisées en développement dans un package pour éviter les copier-coller répétés à chaque fois. j'espère que cela vous sera utile. Amis qui ont besoin d'aide !
laravel-quick (adresse github : https://github.com/youyingxiang/laravel-quick.git) Encapsule certains outils courants dans notre développement pour rendre le développement plus efficace
composer require yxx/laravel-quick
php artisan vendor:publish --provider="Yxx\LaravelQuick\LaravelQuickServiceProvider"
php artisan vendor:publish --provider="YxxLaravelQuickLaravelQuickServiceProvider"
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里面的方法....
php artisan quick:create-trait test
php artisan quick:create-service Test/TestService
php artisan quick:create-repository Test
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!