背景
- 在近期使用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,且没有任何数据返回。
以上所述就是小编给大家介绍的《laravel中Dingo api如何Custom ExceptionHandler》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
ASP.NET动态网站开发基础教程
郭兴峰 / 清华大学 / 2006-5 / 32.00元
ASP.NET是由Microsoft公司推出的新一代Web开发构架。开发人员可以通过ASP.NET实现动态网站的开发,包括开发Web应用程序和Web服务。 本书详细讲解了ASP.NET动态网站开发技术,共分13章,内容包括ASP.NET语言基础、HTML与Script语言、C#语言基础、ASP.NET常用对象、数据库访问技术、数据服务控件和数据绑定技术、ASP.NET配置和部署、ASP.......一起来看看 《ASP.NET动态网站开发基础教程》 这本书的介绍吧!