在RevalidateBackHistory.php

时间:2017-11-22 08:20:38

标签: php laravel-5.4

我编写了一个中间件,以便用户登录后无法再登录页面。如果已经登录,将重定向到管理面板。

以下是代码:

class RevalidateBackHistory
{
    public function handle($request, Closure $next)
    {
        $response = $next($request);

        return $response->header('Cache-Control','nocache, no-store, max-age=0, must-revalidate')
             ->header('Pragma','no-cache')
             ->header('Expires','Fri, 01 Jan 1990 00:00:00 GMT');
    }

}

我在一个名为NoticeController的控制器中调用它

 public function __construct()
        {
            $this->middleware('auth');
            $this->middleware('revalidate'); //this is the middleware
        }

我还在此控制器中定义了一个函数来下载文件,代码是

public function downloadFile($id)
    {
        $notice = new Notice();
        $data = $notice->where('id',$id)->first();

        if (file_exists(public_path().'/uploads/files/'.$data->file))
        {
            return response()->download(public_path().'/uploads/files/'.$data->file);
        }
        else
        {
            Session()->flash('message.notice',"File not found");
            return redirect('admin/notice/info');
        }

    }

下载功能很完美,我也在另一个控制器中使用过这个功能。但当我调用downloadFile()函数时,该控制器内部会出现问题,它会给出以下异常。

(1/1)FatalThrowableError

调用未定义的方法Symfony \ Component \ HttpFoundation \ BinaryFileResponse :: header() 在RevalidateBackHistory.php中(第20行) 在Pipeline.php中的RevalidateBackHistory-> handle(object(Request),object(Closure))(第148行)

如果我从构造函数中删除 revalidate 中间件,则该函数可以正常工作。什么可以解决这个问题?

1 个答案:

答案 0 :(得分:2)

请试试这个:

$response = $next($request);
$headers = [
    'Cache-Control' => 'nocache, no-store, max-age=0, must-revalidate',
    'Pragma','no-cache',
    'Expires','Fri, 01 Jan 1990 00:00:00 GMT',
];

foreach($headers as $key => $value) {
    $response->headers->set($key, $value)
}

return $response;

用于在RevalidateBackHistory中间件文件中设置标题