我在本地使用XAMPP(windows),但服务器在Linux上运行。 为了在HTML中嵌入pdf文件我正在使用:
在控制器中:
$file = public_path() .'/dir/'. $filename;
return response()->file($file);
在视图中:
<object data="{{ url('/podcast/pdf/'. $data->num . '/' . $data->link_pdf) }}" type="application/pdf" width="100%" height="100%">
</object>
这在本地工作得很好,但遗憾的是在服务器上没有任何内容出现在HTML中,只是浏览器试图下载.pdf。
我尝试使用标头,但它不起作用: ['content-type'=&gt; '应用程序/ PDF']
我会感激任何帮助......