异常处理 有助于开发调试

This commit is contained in:
何秀钢 2019-10-02 23:42:54 +08:00
parent b4cb6c2cd1
commit 69352158bf
2 changed files with 25 additions and 1 deletions

View File

@ -0,0 +1,24 @@
<?php
/**
* 应用管理
* @since 2019-10-02
* @author 何秀钢 <bstdn@126.com>
*/
namespace app\util;
use Exception;
use think\exception\Handle;
/**
* Class ExceptionHandle
* @package app\util
* 异常处理handle类
* Detail see: https://www.kancloud.cn/manual/thinkphp5_1/354092
*/
class ExceptionHandle extends Handle {
public function render(Exception $e) {
return parent::render($e)->header(config('apiadmin.CROSS_DOMAIN'));
}
}

View File

@ -141,6 +141,6 @@ return [
// 显示错误信息 // 显示错误信息
'show_error_msg' => false, 'show_error_msg' => false,
// 异常处理handle类 留空使用 \think\exception\Handle // 异常处理handle类 留空使用 \think\exception\Handle
'exception_handle' => '', 'exception_handle' => '\\app\\util\\ExceptionHandle',
]; ];