跳转到内容

错误处理

简介

当你启动一个新的 Laravel 项目时,错误和异常处理已经为你配置好了;但是,在任何时候,你都可以使用应用程序的 bootstrap/app.php 中的 withExceptions 方法来管理应用程序如何报告和渲染异常。

提供给 withExceptions 闭包的 $exceptions 对象是 Illuminate\Foundation\Configuration\Exceptions 的一个实例,负责管理应用程序中的异常处理。我们将在整个文档中更深入地探讨这个对象。

配置

你的 config/app.php 配置文件中的 debug 选项决定了实际向用户显示多少关于错误的信息。默认情况下,此选项设置为遵循存储在你的 .env 文件中的 APP_DEBUG 环境变量的值。

在本地开发期间,你应该将 APP_DEBUG 环境变量设置为 true。**在你的生产环境中,此值应始终为 false。如果该值在生产环境中设置为 true,则你可能会将敏感的配置值暴露给应用程序的最终用户。**

处理异常

报告异常

在 Laravel 中,异常报告用于记录异常或将它们发送到外部服务,例如 SentryFlare。默认情况下,异常将根据你的 日志记录配置进行记录。但是,你可以随意记录异常。

如果你需要以不同的方式报告不同类型的异常,你可以在应用程序的 bootstrap/app.php 中使用 report 异常方法来注册一个闭包,当需要报告给定类型的异常时,该闭包应该执行。Laravel 将通过检查闭包的类型提示来确定闭包报告的异常类型。

->withExceptions(function (Exceptions $exceptions) {
$exceptions->report(function (InvalidOrderException $e) {
// ...
});
})

当你使用 report 方法注册自定义异常报告回调时,Laravel 仍然会使用应用程序的默认日志记录配置来记录异常。如果你希望停止将异常传播到默认日志记录堆栈,你可以在定义报告回调时使用 stop 方法或从回调返回 false

->withExceptions(function (Exceptions $exceptions) {
$exceptions->report(function (InvalidOrderException $e) {
// ...
})->stop();
 
$exceptions->report(function (InvalidOrderException $e) {
return false;
});
})
lightbulb

要自定义给定异常的异常报告,你还可以使用 可报告异常

全局日志上下文

如果可用,Laravel 会自动将当前用户的 ID 作为上下文数据添加到每个异常的日志消息中。你可以在应用程序的 bootstrap/app.php 文件中使用 context 异常方法定义你自己的全局上下文数据。此信息将包含在应用程序编写的每个异常的日志消息中。

->withExceptions(function (Exceptions $exceptions) {
$exceptions->context(fn () => [
'foo' => 'bar',
]);
})

异常日志上下文

虽然将上下文添加到每个日志消息可能很有用,但有时特定的异常可能具有你希望包含在日志中的唯一上下文。通过在应用程序的其中一个异常上定义一个 context 方法,你可以指定应该添加到异常日志条目的任何与该异常相关的数据。

<?php
 
namespace App\Exceptions;
 
use Exception;
 
class InvalidOrderException extends Exception
{
// ...
 
/**
* Get the exception's context information.
*
* @return array<string, mixed>
*/
public function context(): array
{
return ['order_id' => $this->orderId];
}
}

report 助手函数

有时你可能需要报告异常但继续处理当前请求。report 助手函数允许你快速报告异常,而无需向用户呈现错误页面。

public function isValid(string $value): bool
{
try {
// Validate the value...
} catch (Throwable $e) {
report($e);
 
return false;
}
}

重复数据删除报告的异常

如果你在整个应用程序中使用 report 函数,你可能会偶尔多次报告相同的异常,从而在日志中创建重复条目。

如果你想确保只报告一个异常实例一次,你可以在应用程序的 bootstrap/app.php 文件中调用 dontReportDuplicates 异常方法。

->withExceptions(function (Exceptions $exceptions) {
$exceptions->dontReportDuplicates();
})

现在,当使用相同的异常实例调用 report 助手时,只会报告第一次调用。

$original = new RuntimeException('Whoops!');
 
report($original); // reported
 
try {
throw $original;
} catch (Throwable $caught) {
report($caught); // ignored
}
 
report($original); // ignored
report($caught); // ignored

异常日志级别

当消息写入应用程序的 日志 时,消息会以指定的 日志级别 写入,该级别指示所记录消息的严重性或重要性。

如上所述,即使你使用 report 方法注册自定义异常报告回调,Laravel 仍然会使用应用程序的默认日志记录配置来记录异常;但是,由于日志级别有时会影响消息记录的通道,你可能希望配置记录某些异常的日志级别。

为了实现这一点,你可以在应用程序的 bootstrap/app.php 文件中使用 level 异常方法。此方法接收异常类型作为其第一个参数,日志级别作为其第二个参数。

use PDOException;
use Psr\Log\LogLevel;
 
->withExceptions(function (Exceptions $exceptions) {
$exceptions->level(PDOException::class, LogLevel::CRITICAL);
})

按类型忽略异常

在构建应用程序时,会有一些你永远不想报告的异常类型。要忽略这些异常,你可以在应用程序的 bootstrap/app.php 文件中使用 dontReport 异常方法。提供给此方法的任何类将永远不会被报告;但是,它们仍然可以有自定义的渲染逻辑。

use App\Exceptions\InvalidOrderException;
 
->withExceptions(function (Exceptions $exceptions) {
$exceptions->dontReport([
InvalidOrderException::class,
]);
})

或者,你可以简单地使用 Illuminate\Contracts\Debug\ShouldntReport 接口“标记”一个异常类。当一个异常被这个接口标记时,它将永远不会被 Laravel 的异常处理程序报告。

<?php
 
namespace App\Exceptions;
 
use Exception;
use Illuminate\Contracts\Debug\ShouldntReport;
 
class PodcastProcessingException extends Exception implements ShouldntReport
{
//
}

在内部,Laravel 已经为你忽略了一些类型的错误,例如由无效的 CSRF 令牌生成的 404 HTTP 错误或 419 HTTP 响应导致的异常。如果你想指示 Laravel 停止忽略给定类型的异常,你可以在应用程序的 bootstrap/app.php 文件中使用 stopIgnoring 异常方法。

use Symfony\Component\HttpKernel\Exception\HttpException;
 
->withExceptions(function (Exceptions $exceptions) {
$exceptions->stopIgnoring(HttpException::class);
})

渲染异常

默认情况下,Laravel 异常处理程序会将异常转换为 HTTP 响应。但是,你可以随意为给定类型的异常注册自定义渲染闭包。你可以通过在应用程序的 bootstrap/app.php 文件中使用 render 异常方法来实现此目的。

传递给 render 方法的闭包应返回 Illuminate\Http\Response 的一个实例,可以通过 response 助手生成。Laravel 将通过检查闭包的类型提示来确定闭包渲染的异常类型。

use App\Exceptions\InvalidOrderException;
use Illuminate\Http\Request;
 
->withExceptions(function (Exceptions $exceptions) {
$exceptions->render(function (InvalidOrderException $e, Request $request) {
return response()->view('errors.invalid-order', status: 500);
});
})

你也可以使用 render 方法来覆盖内置的 Laravel 或 Symfony 异常(如 NotFoundHttpException)的渲染行为。如果传递给 render 方法的闭包没有返回值,则将使用 Laravel 的默认异常渲染。

use Illuminate\Http\Request;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
 
->withExceptions(function (Exceptions $exceptions) {
$exceptions->render(function (NotFoundHttpException $e, Request $request) {
if ($request->is('api/*')) {
return response()->json([
'message' => 'Record not found.'
], 404);
}
});
})

将异常渲染为 JSON

在渲染异常时,Laravel 将根据请求的 Accept 标头自动确定是否应将异常渲染为 HTML 或 JSON 响应。如果你想自定义 Laravel 如何确定是渲染 HTML 还是 JSON 异常响应,你可以使用 shouldRenderJsonWhen 方法。

use Illuminate\Http\Request;
use Throwable;
 
->withExceptions(function (Exceptions $exceptions) {
$exceptions->shouldRenderJsonWhen(function (Request $request, Throwable $e) {
if ($request->is('admin/*')) {
return true;
}
 
return $request->expectsJson();
});
})

自定义异常响应

极少数情况下,你可能需要自定义 Laravel 异常处理程序渲染的整个 HTTP 响应。为了实现这一点,你可以使用 respond 方法注册响应自定义闭包。

use Symfony\Component\HttpFoundation\Response;
 
->withExceptions(function (Exceptions $exceptions) {
$exceptions->respond(function (Response $response) {
if ($response->getStatusCode() === 419) {
return back()->with([
'message' => 'The page expired, please try again.',
]);
}
 
return $response;
});
})

可报告和可渲染异常

您不必在应用程序的 bootstrap/app.php 文件中定义自定义的报告和渲染行为,而是可以直接在应用程序的异常中定义 reportrender 方法。当这些方法存在时,框架将自动调用它们。

<?php
 
namespace App\Exceptions;
 
use Exception;
use Illuminate\Http\Request;
use Illuminate\Http\Response;
 
class InvalidOrderException extends Exception
{
/**
* Report the exception.
*/
public function report(): void
{
// ...
}
 
/**
* Render the exception into an HTTP response.
*/
public function render(Request $request): Response
{
return response(/* ... */);
}
}

如果您的异常继承自已经可渲染的异常,例如 Laravel 或 Symfony 的内置异常,您可以从异常的 render 方法返回 false,以渲染该异常的默认 HTTP 响应。

/**
* Render the exception into an HTTP response.
*/
public function render(Request $request): Response|bool
{
if (/** Determine if the exception needs custom rendering */) {
 
return response(/* ... */);
}
 
return false;
}

如果您的异常包含仅在满足某些条件时才需要的自定义报告逻辑,您可能需要指示 Laravel 有时使用默认的异常处理配置来报告异常。为此,您可以从异常的 report 方法返回 false

/**
* Report the exception.
*/
public function report(): bool
{
if (/** Determine if the exception needs custom reporting */) {
 
// ...
 
return true;
}
 
return false;
}
lightbulb

您可以对 report 方法的任何必需依赖项进行类型提示,Laravel 的服务容器会自动将它们注入到该方法中。

限制报告的异常

如果您的应用程序报告的异常数量非常大,您可能需要限制实际记录或发送到应用程序外部错误跟踪服务的异常数量。

要对异常进行随机采样,您可以在应用程序的 bootstrap/app.php 文件中使用 throttle 异常方法。throttle 方法接收一个闭包,该闭包应返回一个 Lottery 实例。

use Illuminate\Support\Lottery;
use Throwable;
 
->withExceptions(function (Exceptions $exceptions) {
$exceptions->throttle(function (Throwable $e) {
return Lottery::odds(1, 1000);
});
})

也可以根据异常类型有条件地进行采样。如果您只想对特定异常类的实例进行采样,您可以仅为该类返回一个 Lottery 实例。

use App\Exceptions\ApiMonitoringException;
use Illuminate\Support\Lottery;
use Throwable;
 
->withExceptions(function (Exceptions $exceptions) {
$exceptions->throttle(function (Throwable $e) {
if ($e instanceof ApiMonitoringException) {
return Lottery::odds(1, 1000);
}
});
})

您还可以通过返回 Limit 实例而不是 Lottery 来限制记录或发送到外部错误跟踪服务的异常数量。如果您想防止突然的异常爆发(例如,当应用程序使用的第三方服务关闭时)淹没您的日志,这将非常有用。

use Illuminate\Broadcasting\BroadcastException;
use Illuminate\Cache\RateLimiting\Limit;
use Throwable;
 
->withExceptions(function (Exceptions $exceptions) {
$exceptions->throttle(function (Throwable $e) {
if ($e instanceof BroadcastException) {
return Limit::perMinute(300);
}
});
})

默认情况下,限制将使用异常的类作为速率限制键。您可以使用 Limit 上的 by 方法指定自己的键来定制此行为。

use Illuminate\Broadcasting\BroadcastException;
use Illuminate\Cache\RateLimiting\Limit;
use Throwable;
 
->withExceptions(function (Exceptions $exceptions) {
$exceptions->throttle(function (Throwable $e) {
if ($e instanceof BroadcastException) {
return Limit::perMinute(300)->by($e->getMessage());
}
});
})

当然,您可以为不同的异常返回 LotteryLimit 实例的混合。

use App\Exceptions\ApiMonitoringException;
use Illuminate\Broadcasting\BroadcastException;
use Illuminate\Cache\RateLimiting\Limit;
use Illuminate\Support\Lottery;
use Throwable;
 
->withExceptions(function (Exceptions $exceptions) {
$exceptions->throttle(function (Throwable $e) {
return match (true) {
$e instanceof BroadcastException => Limit::perMinute(300),
$e instanceof ApiMonitoringException => Lottery::odds(1, 1000),
default => Limit::none(),
};
});
})

HTTP 异常

一些异常描述了服务器的 HTTP 错误代码。例如,这可能是“页面未找到”错误 (404),“未授权错误” (401),甚至是由开发者生成的 500 错误。为了从应用程序的任何位置生成这样的响应,您可以使用 abort 辅助函数。

abort(404);

自定义 HTTP 错误页面

Laravel 可以轻松地为各种 HTTP 状态代码显示自定义错误页面。例如,要自定义 404 HTTP 状态代码的错误页面,请创建一个 resources/views/errors/404.blade.php 视图模板。此视图将为应用程序生成的所有 404 错误渲染。此目录中的视图应命名为与它们对应的 HTTP 状态代码匹配。由 abort 函数引发的 Symfony\Component\HttpKernel\Exception\HttpException 实例将作为 $exception 变量传递给视图。

<h2>{{ $exception->getMessage() }}</h2>

您可以使用 vendor:publish Artisan 命令发布 Laravel 的默认错误页面模板。发布模板后,您可以根据自己的喜好对其进行自定义。

php artisan vendor:publish --tag=laravel-errors

回退 HTTP 错误页面

您还可以为给定的 HTTP 状态代码系列定义一个“回退”错误页面。如果特定 HTTP 状态代码没有对应的页面,则会渲染此页面。为此,请在应用程序的 resources/views/errors 目录中定义一个 4xx.blade.php 模板和一个 5xx.blade.php 模板。

在定义回退错误页面时,回退页面不会影响 404500503 错误响应,因为 Laravel 为这些状态代码提供了内部专用页面。要自定义为这些状态代码渲染的页面,您应该为每个状态代码单独定义一个自定义错误页面。