配置文件 app\config.php
首先是 ExcetionHandler.php文件
<?php
namespace app\exception;
use Exception;
use think\exception\Handle;
use think\exception\HttpException;
use think\Log;
use think\Request;
class ExceptionHandler extends Handle
{
private $code;
private $msg;
private $errorCode;
public function render(Exception $e)
{
if ($e instanceof BaseException)
{
//如果是自定义异常,则控制http状态码,不需要记录日志
//因为这些通常是因为客户端传递参数错误或者是用户请求造成的异常
//不应当记录日志
$this->code = $e->code;
$this->msg = $e->msg;
$this->errorCode = $e->errorCode;
}else{
// 如果是服务器未处理的异常,将http状态码设置为500,并记录日志
// if(config('app_debug')){
// // 调试状态下需要显示TP默认的异常页面,因为TP的默认页面
// // 很容易看出问题
// return parent::render($e);
// }
$this->code = 200;
$this->msg = $e->getMessage();
$this->errorCode = 500;
$this->recordErrorLog($e);
}
$request = Request::instance();
$result = [
'status' => $this->errorCode,
'msg' => $this->msg,
'request_url' => $request->url()
];
return json($result, $this->code);
}
/*
* 将异常写入日志
*/
private function recordErrorLog(Exception $e)
{
Log::init([
'type' => 'File',
'path' => LOG_PATH,
'level' => ['error'],
]);
Log::record([
'错误文件' => $e->getFile(),
'错误行数' => $e->getLine(),
'错误代码' => empty($this->code) ? $e->getCode() : $this->code,
'错误消息' => empty($this->message) ? $e->getMessage() : $this->message,
], 'error');
}
}
在写一个baseException.php父级文件
<?php
namespace app\exception;
use think\Exception;
class BaseException extends Exception
{
public $code = SERVICE_SUCCESS_CODE;
public $msg = '无效请求';
public $errorCode = 999;
// public $shouldToClient = true;
/**
* 构造函数,接收一个关联数组
* @param array $params 关联数组只应包含code、msg和errorCode,且不应该是空值
// */
public function __construct($params=[])
{
if(!is_array($params)){
return;
}
if(array_key_exists('code',$params)){
$this->errorCode = $params['code'];
}
if(array_key_exists('msg',$params)){
$this->msg = $params['msg'];
}
if(array_key_exists('errorCode',$params)){
$this->errorCode = $params['errorCode'];
}
}
}
这样500之类的错误就不会直接返回给http了 会存储在日志文件里