为什么 request() 助手 return 空数组?

Why request() helper return empty array?

我想在Error Handler的report()函数中使用请求信息,但是获取不到。

public function report(Exception $exception)
{
    $request = request();
    // -> empty array
    parent::report($exception);
}

为什么 request() 助手 return 空数组? 谢谢

您可以使用 url 个助手:

url()->current();

url()->full();