thinkphp6的自定义异常处理
果子发表于:2022-11-18 10:57:19浏览:718次
使用最新ThinkPHP6.1.0框架,再做异常接管处理时一直找不到原因出错,不能顺利进行很是郁闷,经过不断折腾发现是 provider.php 文件 没有引用 相关文件导致,现在把正确的贴出来大家参考。
1、配置 rpovider.php文件
<?php
use app\ExceptionHandle;
use app\Request;
// 容器Provider定义文件
return [
'think\Request' => Request::class,
'think\exception\Handle' => ExceptionHandle::class,
];
2、配置 ExceptionHandle 文件
<?php
/**
* 统一异常接管
*/
namespace app;
use think\db\exception\DataNotFoundException;
use think\db\exception\ModelNotFoundException;
use think\exception\FuncNotFoundException;
use think\exception\ClassNotFoundException;
use think\exception\ErrorException;
use think\exception\Handle;
use think\exception\HttpException;
use think\exception\HttpResponseException;
use think\exception\ValidateException;
use think\template\exception\TemplateNotFoundException;
use think\db\exception\PDOException;
use think\db\exception\DbException;
use think\Response;
use Throwable;
use think\facade\Log;
use RuntimeException;
/**
* 应用异常处理类
*/
class ExceptionHandle extends Handle
{
private $error_log_db = true; //异常日志是否写入数据库
/**
* Render an exception into an HTTP response.
* @access public
* @param \think\Request $request
* @param Throwable $e
* @return Response
*/
public function render($request, Throwable $e): Response
{
//方法不存在
if ($e instanceof FuncNotFoundException) {
if($request->isAjax()){
return json(['status'=>404,'msg'=>$e->getFunc().'方法不存在']);
}else{
return response($e->getFunc().'控制器不存在', 404);
}
}
//控制器不存在
if ($e instanceof ClassNotFoundException) {
if($request->isAjax()){
return json(['status'=>404,'msg'=>$e->getClass().'控制器不存在']);
}else{
return response($e->getClass().'控制器不存在', 404);
}
}
//模板不存在
if ($e instanceof TemplateNotFoundException) {
return response($e->getTemplate().'模板不存在', 404);
}
//验证器异常
if ($e instanceof ValidateException) {
return json(['status'=>411,'msg'=>$e->getError()]);
}
//pdo异常
if ($e instanceof PDOException) {
return response($e->getMessage(), 500);
}
//db异常
if ($e instanceof DbException) {
return response($e->getMessage(), 500);
}
//error系统层面错误异常
if ($e instanceof ErrorException) {
return response($e->getMessage(), 500);
}
// 请求异常 多为自定义的请求异常
if ($e instanceof HttpException) {
Log::error('错误信息:'.print_r($e->getMessage(),true));
if($e->getStatusCode() == 500 && $this->error_log_db){
event('ExceptionLog', $e->getMessage());
}
return json(['status'=>$e->getStatusCode(),'msg'=>$e->getMessage()]);
}
return parent::render($request, $e);
}
}
3、注意文件位置 app目录下面
推荐文章
- PHP操作DOM元素,PHP抓取网页内容并对HTML节点处理,PHP抓取HTML内容,标题等
- tp8框架中有那些主要异常
- 记者证查询地址
- 勾股DEV是一款专为IT研发团队打造的项目管理与团队协作的系统工具
- uniapp在谷歌浏览器测试出现/sockjs-node/info?t=1709704280949
- 第55个世界地区日答题题库、答题系统开发,在线答题系统
- PHPStorm快捷键大全,不断更新收藏中(熟练使用后基本上告别鼠标了!)
- vue2+elementUI+tinymce编辑器上传音频mp3文件
- PHP正则表达式
- element-ui 表格组件el-table操作toggleRowSelection事件会主动触发selection-change的坑