加密后的代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ExceptionHandle.php 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?php
  2. namespace app;
  3. use think\db\exception\DataNotFoundException;
  4. use think\db\exception\ModelNotFoundException;
  5. use think\exception\Handle;
  6. use think\exception\HttpException;
  7. use think\exception\HttpResponseException;
  8. use think\exception\ValidateException;
  9. use think\Response;
  10. use Throwable;
  11. /**
  12. * 应用异常处理类
  13. */
  14. class ExceptionHandle extends Handle
  15. {
  16. /**
  17. * 不需要记录信息(日志)的异常类列表
  18. * @var array
  19. */
  20. protected $ignoreReport = [
  21. HttpException::class,
  22. HttpResponseException::class,
  23. ModelNotFoundException::class,
  24. DataNotFoundException::class,
  25. ValidateException::class,
  26. ];
  27. /**
  28. * 记录异常信息(包括日志或者其它方式记录)
  29. *
  30. * @access public
  31. * @param Throwable $exception
  32. * @return void
  33. */
  34. public function report(Throwable $exception): void
  35. {
  36. // 使用内置的方式记录异常日志
  37. parent::report($exception);
  38. }
  39. /**
  40. * Render an exception into an HTTP response.
  41. *
  42. * @access public
  43. * @param \think\Request $request
  44. * @param Throwable $e
  45. * @return Response
  46. */
  47. public function render($request, Throwable $e): Response
  48. {
  49. if (env('APP_DEBUG',true) == false) {
  50. // 参数验证错误
  51. if ($e instanceof ValidateException) {
  52. $data = array('code'=>0, 'show'=> 1, 'msg'=>'参数验证错误', 'data'=>[]);
  53. return json($data, 200);
  54. }
  55. // 请求异常
  56. if ($e instanceof HttpException) {
  57. $data = array('code'=>0, 'show'=> 1, 'msg'=>'请求异常', 'data'=>[]);
  58. return json($data, 200);
  59. }
  60. // // 其他服务器内部错误
  61. // $data = array('code'=>0, 'show'=> 1, 'msg'=>'服务器内部错误 (^o^)Y', 'data'=>[]);
  62. // return json($data, 200);
  63. }
  64. // 其他错误交给系统处理
  65. return parent::render($request, $e);
  66. }
  67. }