当前位置:  开发笔记 > 编程语言 > 正文

从ajax请求下载laravel pdf文件(laravel 5)

如何解决《从ajax请求下载laravelpdf文件(laravel5)》经验,为你挑选了0个好方法。

我的html代码是这样的:


我的JavaScript代码是这样的:

function showAjaxPdf(file_path)
        {
            var file_path = file_path.replace(/\\/g,"/");
            //example : file_path = assets/images/myfile.pdf
            $.ajax({
                type: "POST",
                data: 'file_path=' + file_path,
                url: "news/test",
                success: function(response)
                {
                    $('#test').html(response);

                }
            });
        }

我在控制器中的功能测试:

public function postTest(Request $request)
    {
$file_path = $request->input('file_path');  
        return response()->download($file_path);       
    }

当我单击pdf图标时,没有响应。

我希望当单击pdf图标时显示如下:

单击pdf图标时,图像如何显示?

谢谢

推荐阅读
女女的家_747
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有