我们可以下载任何文件而无需保存到laravel 5.4中的应用程序吗?

时间:2017-06-03 07:06:32

标签: file csv download laravel-5.4

我正在尝试实现一个任务,用户只需选择一个表单数据并点击提交按钮,然后在获取我希望数据必须插入到csv文件中的数据后,数据将从数据库中提取,该文件必须可以直接下载到用户的浏览器中,而无需将该文件存储到应用程序的任何位置。 在laravel中是否可以直接将csv文件下载到用户的浏览器而不存储到应用程序路径中?

我的表格是:

<form id="statistics" method="post" action="{{ action('MyController@store') }}"">
 <div class="form-group">
  <label><input type="checkbox" value="option1" name="option1">option1</label>
 </div>
 <div class="form-group">
  <label><input type="checkbox" value="option2" name="option2">option2</label>
 </div>
 <div class="form-group">
    <button type="submit" id="process" class="btn btn-primary submit">Run Report</button>
 </div>
</form>

MyController / store方法:

public function store(Request $request) {
  $results = DB::table('table1')
               ->leftjoin('table2 AS s')
               ->get()->toArray();
  $count = count($results);
  if($count > 0)
  {
    $CsvData=array('column1,column2,column3');          
    foreach($results as $value){              
      $CsvData[]=$value->column1.','.$value->column2.', '.$value->column3;
    }
    $filename = 'file_name.csv';
    $file_path=base_path().'/'.$filename; 
    $file = fopen($file_path,"w+");
    foreach ($CsvData as $exp_data){
       fputcsv($file,explode(',',$exp_data));
    }   
    fclose($file);
    $headers = ['Cache-Control' => 'must-revalidate, post-check=0, pre-check=0',
                    'Content-Type' => 'application/csv',
                    'Content-Disposition' => 'attachment; filename='.$filename,
                    'Content-transfer-encoding: binary\n'];
    return Response::download($file_path, $filename, $headers);
  }
}

1 个答案:

答案 0 :(得分:0)

是的,你可以在创建csv文件内容之后用正确的标题作为内容类型回应它:attachment。附件。

标题(&#39;内容类型:text / csv&#39;); 标题(&#39;内容 - 处置:附件;文件名=&#34; pedidos.csv&#34;&#39;);

echo $ shtml;