mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-06 03:58:00 +08:00
异常处理 有助于开发调试
This commit is contained in:
parent
b4cb6c2cd1
commit
69352158bf
24
application/util/ExceptionHandle.php
Normal file
24
application/util/ExceptionHandle.php
Normal 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'));
|
||||||
|
}
|
||||||
|
}
|
@ -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',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user