|
@@ -20,6 +20,7 @@ class ExceptionHandle extends Handle
|
|
public function render(Exception $e)
|
|
public function render(Exception $e)
|
|
{
|
|
{
|
|
// 在生产环境下返回code信息
|
|
// 在生产环境下返回code信息
|
|
|
|
+ $debug=\think\Config::get('app_debug');
|
|
//if (!\think\Config::get('app_debug')) {
|
|
//if (!\think\Config::get('app_debug')) {
|
|
if(request()->isAjax() || strpos(request()->header('Accept'),'/json')!==false) {
|
|
if(request()->isAjax() || strpos(request()->header('Accept'),'/json')!==false) {
|
|
$statuscode = $code = 0;
|
|
$statuscode = $code = 0;
|
|
@@ -32,16 +33,20 @@ class ExceptionHandle extends Handle
|
|
$msg = $e->getError();
|
|
$msg = $e->getError();
|
|
}
|
|
}
|
|
// Http异常
|
|
// Http异常
|
|
- if ($e instanceof \think\exception\HttpException) {
|
|
|
|
|
|
+ elseif ($e instanceof \think\exception\HttpException) {
|
|
$statuscode = $code = $e->getStatusCode();
|
|
$statuscode = $code = $e->getStatusCode();
|
|
}
|
|
}
|
|
- if ($e instanceof UserException) {
|
|
|
|
|
|
+ elseif ($e instanceof UserException) {
|
|
$code = 0;
|
|
$code = 0;
|
|
$msg = $e->getMessage();
|
|
$msg = $e->getMessage();
|
|
$statuscode = 200;
|
|
$statuscode = 200;
|
|
}
|
|
}
|
|
- if ($e instanceof ModelNotFoundException) {
|
|
|
|
|
|
+ elseif ($e instanceof ModelNotFoundException) {
|
|
$msg = '查找的数据不存在';
|
|
$msg = '查找的数据不存在';
|
|
|
|
+ }else{
|
|
|
|
+ if(!$debug){
|
|
|
|
+ $msg='服务器错误';
|
|
|
|
+ }
|
|
}
|
|
}
|
|
return json(['code' => $code, 'msg' => $msg, 'time' => time(), 'data' => null], $statuscode);
|
|
return json(['code' => $code, 'msg' => $msg, 'time' => time(), 'data' => null], $statuscode);
|
|
}
|
|
}
|