获取验证授权功能中的请求值

时间:2017-05-19 16:49:33

标签: laravel

如何在php artisan make:request Foo中获取请求标头?

public function authorize()
{   
  dd( $this->request->header('value') );
    return ...
}

我发送了一个头部请求,我需要authorize()内的值。可能?

2 个答案:

答案 0 :(得分:2)

FormRequest只是Request的扩展。所以你可以这样做

$this->header('value')

答案 1 :(得分:1)

您可以使用该功能检索Request对象。

request()->header('value');