Laravel 中的异常处理器和HTTP异常处理实例教程

Laravel应用中所有的异常都通过 App\Exceptions\Handler 进行处理,下面我们先简单分析下给异常处理器类的属性和方法:

$dontReport属性
protected $dontReport = [
    HttpException::class,
    ModelNotFoundException::class,
TokenMismatchException::class, //引入totken类
];


render方法
    
/**
     * Render an exception into an HTTP response.
     *
     * @param  \Illuminate\Http\Request $request
     * @param  \Exception $e
     * @return \Illuminate\Http\Response
     */
    public function render($request, Exception $e)
    {
        //TODO 这里一条自定义http错误自动跳转到首页
        if (getenv('APP_ENV') == 'production' && $e instanceof HttpException) {
            Log::error($e);
            return Redirect::to('admin/dashboard');
        }
        if (getenv('APP_ENV') == 'production' && $e instanceof TokenMismatchException) {
            Log::error($e);
            if ($request->ajax()) {

                return Response::json(
                    [
                        'status' => 'failed',
                        'error' =>
                            [
                                'status_code' => 401,
                                'message' => '操作未完成,系统加载失败,重新登录或者刷新当前页面!'
                            ]
                    ]
                );
            }
            return Redirect::to('admin/logout');

        }
        return parent::render($request, $e);
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值