在app目录下创建Exception
文件夹,在该文件夹中创建一个名为exceptionHandle
的类,继承于think\exception
下的Handle
父类
1 2 3 4 5 6 7
| <?php namespace app\Exception; use think\exception\Handle;
class ExceptionHandle extends Handle { }
|
在TP6中,你可能已经发现在app文件夹下已经有一个ExceptionHandle
类了,这个类重写了父类Handle
中的两个方法
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
public function report(Throwable $exception): void { parent::report($exception); }
public function render($request, Throwable $e): Response {
return parent::render($request, $e); }
|
下面的步骤就是对这两个方法就行重写。
render
方法
render
方法是TP6中的异常处理方法,它将TP6中的异常反馈给HTTP请求。
通常将异常分为用户端异常和服务端异常,用户端异常就是用户在请求数据时产生的一些异常,如Token过期、密码错误等;服务端异常可能是服务器、数据库等和用户无关的异常。在对TP6的异常进行自定义时,主要区分异常是来自用户端还是来自服务端。
用户端异常
为了区分两种不同的异常,在Exception
目录下面创建一个BaseException
子类,继承于think\
下的Exception
父类。在BaseException
中创建三个成员变量,并赋初值。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| <?php namespace app\exception;
use think\Exception;
class BaseException extends Exception { public $code = 0; public $msg = '请求错误'; public $httpCode = 200;
public function __construct($msg = null, $code = null) { if ($msg) { $this->msg = $msg; } if ($code) { $this->code = $code; } } }
|
think\Exception
类继承了\Exception
,Exception
是所有异常的基类。BaseException
中的变量$httpCode
表示HTTP状态码,$msg
表示返回信息,$code
表示错误码。请注意,HTTP状态码和错误码并不是等价的,HTTP状态码是是用以表示网页服务器超文本传输协议响应状态的3位数字代码,它是国际通用的,而错误码是我们自定义的一套数字代码,没有比较成熟或者通用的设计方法,可以用于对应错误信息、判断是否返回了正确的信息等。
下面所有继承于BaseException
的类并且带有都是自定义异常,比如说我定义了一个参数异常的类ParameterException
:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| <?php namespace app\exception;
class ParameterException extends BaseException { public function __construct($msg = null, $code = 400) { parent::__construct($msg, $code); } }
|
回到ExceptionHandle
类中,下面对render
方法进行重写
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
| <?php namespace app\exception;
use Throwable; use think\Response; use think\exception\Handle; use think\db\exception\DataNotFoundException; use think\db\exception\ModelNotFoundException; use think\exception\HttpException; use think\exception\HttpResponseException; use think\exception\ValidateException;
class ExceptionHandle extends Handle {
protected $ignoreReport = [ HttpException::class, HttpResponseException::class, ModelNotFoundException::class, DataNotFoundException::class, ValidateException::class, ];
public function render($request, Throwable $e): Response { if ($e instanceof BaseException) { $code = $e->code; $msg = $e->msg; $httpCode = $e->httpCode; } else { if (env('APP_DEBUG') == true) { return parent::render($request, $e); } $httpCode = 500; $msg = '服务器异常'; $code = 0;
if (!$this->isIgnoreReport($e)) { $this->reportException($request, $e); } } $data = [ 'msg' => $msg, 'code' => $code, ]; return json($data, $httpCode); }
private function reportException($request, Throwable $e): void { $errorStr = "url:" . $request->host() . $request->url() . "\n"; $errorStr .= "file:" . $e->getFile() . "\n"; $errorStr .= "line:" . $e->getLine() . "\n"; $errorStr .= "message:" . $e->getMessage() . "\n";
trace($errorStr, 'error'); } }
|
前面说到render
方法将TP6中的异常反馈给HTTP请求,$e
是异常的一个实例,通过类型运算符instanceof
判断该异常是否继承于BaseException
。在开发环境下,通常需要详细的TP6异常信息,所以还需判断APP_DEBUG
是否为TRUE
。
report
方法
report
方法是TP6记录日志的一个方法,在异常发生时记录异常信息,对于用户异常和服务端异常,通常需要记录的是服务端异常,所以对report
方法重写如下:
1 2 3 4 5 6 7 8
| public function report(Throwable $exception): void { if (!($exception instanceof BaseException)) { parent::report($exception); } }
|
最后一步
app目录下有一个provider.php文件,它是容器Provider的定义文件。需要在app目录下面的provider.php文件中绑定异常处理类,即上面实现的ExceptionHandle
类。
1 2 3 4 5 6 7 8
| <?php
return [ 'think\Request' => Request::class, 'think\exception\Handle' => '\\app\\exception\\ExceptionHandle', ];
|
本文是对TP6异常处理的一些见解,其实在不同的框架或者编程语言中都能按照这种思路来编写自定义异常处理。
语言和框架只是一个工具,重要的是工具背后的思想。