ExceptionHandle.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. namespace app\api\library;
  3. use app\UserException;
  4. use Exception;
  5. use think\db\exception\DataNotFoundException;
  6. use think\db\exception\ModelNotFoundException;
  7. use think\exception\Handle;
  8. /**
  9. * 自定义API模块的错误显示
  10. */
  11. class ExceptionHandle extends Handle
  12. {
  13. protected $ignoreReport = [
  14. '\\think\\exception\\HttpException',
  15. ];
  16. public function render(Exception $e)
  17. {
  18. // 在生产环境下返回code信息
  19. $debug=\think\Config::get('app_debug');
  20. //if (!\think\Config::get('app_debug')) {
  21. if(request()->isAjax() || strpos(request()->header('Accept'),'/json')!==false) {
  22. $statuscode = $code = 0;
  23. //$msg = 'An error occurred';
  24. $msg = $e->getMessage();
  25. // 验证异常
  26. if ($e instanceof \think\exception\ValidateException) {
  27. $code = 0;
  28. $statuscode = 200;
  29. $msg = $e->getError();
  30. }
  31. // Http异常
  32. elseif ($e instanceof \think\exception\HttpException) {
  33. $statuscode = $code = $e->getStatusCode();
  34. }
  35. elseif ($e instanceof UserException) {
  36. $code = 0;
  37. $msg = $e->getMessage();
  38. $statuscode = 200;
  39. }
  40. elseif ($e instanceof ModelNotFoundException) {
  41. $msg = '查找的数据不存在';
  42. }else{
  43. if(!$debug){
  44. $msg='服务器错误';
  45. }
  46. }
  47. return json(['code' => $code, 'msg' => $msg, 'time' => time(), 'data' => null], $statuscode);
  48. }
  49. //}
  50. //其它此交由系统处理
  51. return parent::render($e);
  52. }
  53. }