YII2自定义错误输出
程序员文章站
2022-05-12 23:34:11
...
有些时候我们不需要yii2框架输出一大堆的html错误定位,只需要简单的核心错误描述即可,这个时候需要继承yii2框架的ErrorHandler类,重写renderException方法即可。
<?php
namespace app\components;
use app\Utils\ResponseUtil;
use yii\helpers\Json;
class ErrorHandler extends \yii\base\ErrorHandler
{
/**
* Renders the exception.
* @param \Exception $exception the exception to be rendered.
*/
protected function renderException($exception)
{
$title = $exception->getMessage();
$message = $exception->getFile().":".$exception->getLine();
$code = $exception->getCode();
$data = [
'title' => $title,
'message' => $message,
'code' => $code
];
echo Json::encode(ResponseUtil::buildResponse(500,'服务器内部错误',$data));
\Yii::$app->end();
}
}
这里是针对接口设定的错误格式,还可以直接跳转一个错误页面,
return $this->render('@app/views/site/error',['error'=>$exception]);
完毕。