gpt4 book ai didi

laravel - 尝试catch在Laravel中间件中无法正常工作吗?

转载 作者:行者123 更新时间:2023-12-03 08:43:29 24 4
gpt4 key购买 nike

在中间件中使用try catch覆盖默认的异常处理程序时,它不起作用。没有捕获异常。

class NotWorkingTryCatchMiddleware
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/


public function handle($request, Closure $next)
{

try {
if ( somethingThatCouldThrowAnException() ) {
$request->newVariable = true;
}
} catch (\Exception $e) {
dd('Never gets ran, Laravel default handler overrides');
}

return $next($request);
}
}

最佳答案

代替

catch (\Exception $e) { 

您应该使用:
catch (\Throwable $e) {

确保捕获所有类型。 PHP 7中的异常和错误都扩展了 Throwable

关于laravel - 尝试catch在Laravel中间件中无法正常工作吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59590973/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com