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);
            }
    
    评论

报告相同问题?

悬赏问题

  • ¥50 导入文件到网吧的电脑并且在重启之后不会被恢复
  • ¥15 (希望可以解决问题)ma和mb文件无法正常打开,打开后是空白,但是有正常内存占用,但可以在打开Maya应用程序后打开场景ma和mb格式。
  • ¥15 绘制多分类任务的roc曲线时只画出了一类的roc,其它的auc显示为nan
  • ¥20 ML307A在使用AT命令连接EMQX平台的MQTT时被拒绝
  • ¥20 腾讯企业邮箱邮件可以恢复么
  • ¥15 有人知道怎么将自己的迁移策略布到edgecloudsim上使用吗?
  • ¥15 错误 LNK2001 无法解析的外部符号
  • ¥50 安装pyaudiokits失败
  • ¥15 计组这些题应该咋做呀
  • ¥60 更换迈创SOL6M4AE卡的时候,驱动要重新装才能使用,怎么解决?