laravel中Dingo api如何Custom ExceptionHandler

栏目: PHP · 发布时间: 5年前

背景

  • 在近期使用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,
    ...
    ];

结语


以上所述就是小编给大家介绍的《laravel中Dingo api如何Custom ExceptionHandler》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

最优状态估计

最优状态估计

[美] D. 西蒙 / 张勇刚、李宁、奔粤阳 / 国防工业出版社 / 2013-5-1 / 68.00元

《最优状态估计——卡尔曼H∞及非线性滤波》共分为四个部分,全面介绍了最优状态估计的理论和方法。第1部分为基础知识,回顾了线性系统、概率论和随机过程相关知识,介绍了最小二乘法、维纳滤波、状态的统计特性随时间的传播过程。第2部分详细介绍了卡尔曼滤波及其等价形式,介绍了卡尔曼滤 波的扩展形式,包括相关噪声和有色噪声条件下的卡尔曼滤波、稳态滤波、衰减记忆滤波和带约束的卡尔 曼滤波等。第3部分详细介绍了H∞......一起来看看 《最优状态估计》 这本书的介绍吧!

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

Markdown 在线编辑器
Markdown 在线编辑器

Markdown 在线编辑器

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具