在Laravel中以Bootstrap模式展示AWS PDF文件
P粉418351692
P粉418351692 2024-04-04 22:16:18
0
1
1564

我已经下载了 aws url,例如

https://xxx-xx-dev.s3.ap-south-1.amazonaws.com/std_check/6557122022151745398XtquBSY.pdf

当此 url 放入 ifrem 时,文件将自动下载,而不是引导模型中的视图。 我的代码在这里,

查看文件是

function PDFOPEN(path) {
    $.ajax({
        type: 'post',
        url: '{{ route('background.pdf.show') }}',
        data: {
            "_token": "{{ csrf_token() }}",
            'path':path
        },
        success: function(data) {
            if (data.status == true) {
            
            } else {
                toastr.error(data.message);
            }
           
        }
    });
}

控制器文件是

public function BackgroundVerifyShow(Request $request)
    {
        $file = \Storage::disk('s3')->url($request->path);
        header('Content-Type: application/pdf');
        header(sprintf("Content-disposition: inline;filename=%s", basename($file)));
        @readfile($file);
    }

那么,如何在 bootsrep 模型后在 ajax succss 中读取此文件

P粉418351692
P粉418351692

全部回复(1)
P粉314915922

readfile 函数将返回 truefalse

public function BackgroundVerifyShow(Request $request)
    {
        $file = \Storage::disk('s3')->url($request->path);

        header('Content-Type: application/pdf');
        header(sprintf("Content-disposition: inline;filename=%s", basename($file)));
        header("Content-Type: " . $asset->mime);

        echo json_encode({status => readfile($file)});
    }
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!