前提・実現したいこと
現在、laravelでCSVボタンを作成していますが、ファイルは作成されているのですが、ダウンロードが
行われません。
csvとして出力したデータをボタンを押すと自動的にダウンロードさせたいです。
発生している問題・エラーメッセージ
$csvFileName = time() . rand() . '.csv';を
$csvFileName ='/tmp/'. time() . rand() . '.csv';にすると
local.ERROR: fopen(/tmp/16075869642087170619.csv): failed to open stream: No such file or directory
該当のソースコード
php
1 //CSVファイルの処理 2 $csvFileName = time() . rand() . '.csv'; 3 $fileName = time() . rand() . '.csv'; 4 $res = fopen($csvFileName, 'w'); 5 if ($res === FALSE) { 6 Log::debug("失敗です"); 7 } 8 //ヘッダー 9 $header = ["id","形状","向き","状態"]; 10 mb_convert_variables('SJIS', 'UTF-8', $header); 11 fputcsv($res, $header); 12 // ループしながら出力 13 if(!empty(($data))){ 14 foreach($data as $value) { 15 $arrEle = array(); 16 foreach($value as $key => $val){ 17 if($key == 'id'){ 18 $tmp = substr($val, 0, 10); 19 $arrEle[] = $tmp; 20 } else { 21 $arrEle[] = $val ; 22 } 23 } 24 // 文字コード変換 25 mb_convert_variables('SJIS', 'UTF-8', $arrEle); 26 // ファイルに書き出しをする 27 fputcsv($res, $arrEle); 28 } 29 } 30 // ハンドル閉じる 31 fclose($res); 32 // ダウンロード開始 33 header('Cache-Control: public'); 34 header("Pragma: public"); 35 // ファイルタイプ(csv) 36 header('Content-Type: application/octet-stream'); 37 // ファイル名 38 header('Content-Disposition: attachment; filename=' . $fileName); 39 // ファイルのサイズ ダウンロードの進捗状況が表示 40 header('Content-Length: ' . filesize($csvFileName)); 41 header('Content-Transfer-Encoding: binary'); 42 // ファイルを出力する 43 //readfile($csvFileName); 44 $response = array( 45 "aaData" => $data 46 ); 47 echo json_encode($response); 48 49
php
1//(views …blade.php) 2<div class="csv-all"> 3 <button>CSV出力</button> 4</div>
js
1$(document).on('click', '.csv-all', function (event) { 2 var _sceneIdArr = ['100000']; 3 $.each(_sceneIdArr, function(ind, ele){ 4 var postData = { 5 'sceneId': ele, 6 'condAndOr': 1, 7 }; 8 9 $.ajax({ 10 headers: { 11 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content') 12 }, 13 type: 'post', 14 url: _url + 'ajax/csvFile', 15 dataType: 'json', 16 data: postData, 17 }).done(function (result, textStatus, jqXHR) { 18 console.log("成功"); 19 }); 20 }).fail(function (data, textStatus, xhr) { 21 console.log("失敗"); 22 }); 23 }); 24 }); 25
試したこと
1,php(views)の<button>→<input type="submit" に変更しましたが、変化なし
2,phpのreadfile($csvFileName);のコードを入れると、ajaxが失敗する。
このコードがなくてもファイルは生成されています。
3,header()のすべてをコメントアウトして、readfile($csvFileName);を活かしても
ajaxが失敗し、ファイルは生成されています。
ここにより詳細な情報を記載してください。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。