douzen3516 2018-11-30 06:54
浏览 78

而下载和删除文件使用laravel下载弹出不来

In my blade file i have attach one file to download by giving directly its path in tag. While i click on that link i have use ajax to remove that file from server,Now i can able to remove the file but i am not getting download-popup.Any one can help. Thanks in advance.

blade file code

<a href="/temp/invalidData.csv" style="position: relative;padding-left: 20px" id="invalid">InvalidData.csv</a>

ajax code

$(document).ready(function(){
    $(document).on('click','#invalid',function(){

        $.ajax({
              type:"post",
              url:'/delete-file',
              dataType:"json",
              success:function(data){
                if (data.type == "success") {

                        } else
                        {

                        }
                        return false;
        }
      });
        return false;
    });
});

controller code

public function deleteFile(){

        $file= public_path(). "/temp/invalidData.csv";

       return response()->download($file)->deleteFileAfterSend();


    }
  • 写回答

1条回答 默认 最新

  • doujia2463 2018-11-30 10:02
    关注

    Use a simple anchor tag to put a get call to download and delete file e.g.:

    <a style="display: none;" href="address_for_request?file={{$file_path}}" id="path"  ></a>
    

    then using jquery invoke a click event on anchor tag or make same process with ajax call :

     (function(){
       if(jQuery('#path').length) {
            jQuery('#path')[0].click();
       }
     })();
    

    auto invoke explained here.

    and in controller simple code to download:

          if ( isset( $request->file ) ) {
                session::forget('pdf');
                session::save();
                return response()->download(storage_path($request->file))->deleteFileAfterSend(true);
            }
    
    评论

报告相同问题?

悬赏问题

  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码