2016-12-14 27 views
0
時返回錯誤

我試着去下載一個文件,但我不斷收到以下錯誤Laravel使用頭

Type error: Too few arguments to function Illuminate\Http\Response::header(), 1 passed in /home/vagrant/projects/name/app/Http/Controllers/InitialController.php on line 178 and at least 2 expected 

代碼即時通訊使用的是如下:

return (new Response($file, 200)) 
    ->header('Content-Type', 'text/plain') 
    ->header('Content-Disposition: attachment; filename="filename.gz"'); 

它工作正常,如果我省略Content-Disposition行,但是當我添加它時,我得到錯誤。

任何幫助將是盛大的。

和平!

回答

3

,因爲你提供整個頭作爲第一個參數,應該是

->header('Content-Disposition', 'attachment; filename="filename.gz"');