laravel中Dingo api如何Custom ExceptionHandler
背景
- 在近期使用Dingo api处理接口时,发现laravel本身appExceptionsHandler中无法捕获异常。
- 后来查阅资料发现,Dingo api接管了api请求的异常处理。导致无法自定义错误返回,很是头疼。
- 最后在dingo的issues找到了处理方法。
方法
创建一个自定义异常处理
继承自Dingo\Api\Exception\Handler,重写handle方法 app/Exceptions/ApiHandler.php
<?php namespace App\Exceptions; use Exception; use Dingo\Api\Exception\Handler as DingoHandler; class ApiHandler extends DingoHandler { public function handle(Exception $exception) { if ($exception instanceof \Illuminate\Auth\AuthenticationException) { return response()->json(['message' => 'Unauthorized', 'status_code' => 401], 401); } return parent::handle($exception); } }
创建一个服务容器
app/Providers/DingoServiceProvider.php
<?php namespace App\Providers; use Dingo\Api\Provider\DingoServiceProvider as DingoServiceProviders; use App\Exceptions\ApiHandler as ExceptionHandler; class DingoServiceProvider extends DingoServiceProviders { protected function registerExceptionHandler() { $this->app->singleton('api.exception', function ($app) { return new ExceptionHandler($app['Illuminate\Contracts\Debug\ExceptionHandler'], $this->config('errorFormat'), $this->config('debug')); }); } }
将服务容器添加到config/app.php中
... 'providers' => [ ... App\Providers\DingoServiceProvider::class, ... ];
结语
- 参考issues链接:https://github.com/dingo/api/...
@shanginn 提供的方法会存在接口返回500,且没有任何数据返回。
相关推荐
染血白衣 2020-11-16
SAMXIE 2020-11-04
一个智障 2020-11-15
学习web前端 2020-11-09
yiranpiaoluo 2020-11-04
lxhuang 2020-11-03
88274956 2020-11-03
82387067 2020-11-03
huangliuyu00 2020-10-29
sichenglain 2020-10-27
Dayer 2020-10-27
小马的学习笔记 2020-10-23
liuweiITlove 2020-10-14
kjyiyi 2020-10-10
fanjunjaden 2020-10-09
zhyue 2020-09-28
huangliuyu00 2020-09-24
88397813 2020-09-23
jyj0 2020-09-21