我想显示一个pdf文件,单击按钮后该文件会从php服务器发送给我。如果浏览器提示打开文件或保存文件选项,也可以。
单击按钮时,我正在调用在get响应中发送GET请求的函数。响应是后端php服务器读取pdf文件并将数据发送给我。头朝下。
Access-Control-Allow-Origin
*
Cache-Control
must-revalidate
Connection
Keep-Alive
Content-Disposition
attachment; filename=report.pdf
Content-Length
30856
Content-Type
application/pdf
Date
Fri, 26 Apr 2019 08:59:04 GMT
Expires
0
Keep-Alive
timeout=5, max=49
Pragma
public
Server
Apache/2.4.6 (CentOS) PHP/5.4.16
X-Powered-By
PHP/5.4.16
现在我不知道如何使用该响应,。
我尝试的一种方法是,使用给定的GET请求直接打开一个新窗口,成功打开pdf,然后浏览器显示“打开文件”或“保存文件”选项。但我想在浏览器本身中显示它。
在我的控制器中,我正在这样做
url = config.serverUrl+'/getPDF';
var myWindow = window.open(url, "", "width=200, height=100");
在php后端..
$finfo = finfo_open(FILEINFO_MIME_TYPE);
header('Content-Type: ' . finfo_file($finfo, $filename));
finfo_close($finfo);
//Use Content-Disposition: attachment to specify the filename
header('Content-Disposition: attachment;filename='.basename($filename));
//No cache
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
//Define file size
header('Content-Length: ' . filesize($filename));
ob_clean();
flush();
readfile($filename);
return;
}
我想使用类似
的响应$http.get(url)
.then(function(response){
if(response.status == 200)
{
// console.log(response);
var newWindow = window.open("", "new window", "width=200, height=100");
newWindow.location.assign(response);
}
});
但是上面的代码不起作用。