我研究了如何在刀片中显示pdf文件。我找到了这个答案。但是我应该在刀片服务器上做什么才能显示文件?
$filename = 'test.pdf';
$path = storage_path($filename);
return Response::make(file_get_contents($path), 200, [
'Content-Type'
=> 'application/pdf',
'Content-Disposition' => 'inline; filename="'.$filename.'"'
如何在刀片中显示结果(pdf)?
答案 0 :(得分:0)
<iframe src="path_of_pdf_file" width ="100%" height="600px"></iframe>