1.不使用Dingo Api进自定义Exception的处理方式是
首先定义Exception类,如AppExceptionsApiException
namespace App\Exceptions;
use Exception;
use Throwable;
class ApiException extends Exception
{
public function __construct(string $message = "", int $code = 1, Throwable $previous = null)
{
parent::__construct($message, $code, $previous);
}
}
其次在AppExceptionsHandler中针对Exception处理
public function render($request, Exception $exception)
{
if ($exception instanceof ApiException) {
return response()->json(['status'=>$exception->getCode(), 'msg'=> $exception->getMessage()]);//自定义返回
}
return parent::render($request, $exception);
}
最后在使用时,throw new ApiException(‘请求出错’, 123);
2.在使用Dingo api处理接口时,发现laravel本身appExceptionsHandler中无法捕获异常, render无法生效了,原因是Dingo 接管了Exception,解决如下
首先重新定义一个Handler类
namespace App\Exceptions;
use Exception;
use Dingo\Api\Exception\Handler as DingoHandler;
class ApiHandler extends DingoHandler
{
public function handle(Exception $exception)
{
if ($exception instanceof ApiException) {
return ['status'=>$exception->getCode(), 'msg'=> $exception->getMessage()];//自定义返回,注意此处不能使用response()返回了,因为Dingo封装处理了,全部当code为500返回,所以此处应直接返回array,
}
return parent::handle($exception);
}
}
其次注册处理类,可直接在AppProvidersAppServiceProvider->boot函数中添加(本例采用此方法),也可以自定义一个Provider,然后在config/app.php的providers数组中添加进去
public function boot()
{
// 自定义错误处理
$this->app->alias('api.exception', 'App\Exceptions\ApiHandler');
$this->app->singleton('api.exception', function ($app) {
return new \App\Exceptions\ApiHandler($app['Illuminate\Contracts\Debug\ExceptionHandler'],
$app['config']['api.errorFormat'], $app['config']['api.debug']);
});
}
最后在使用时,throw new ApiException(‘请求出错’, 123);