PHP代码生成pdf内容(使用mpdf)。我需要使用js在浏览器中显示它(ajax请求将此pdf内容作为字符串获取)。我怎么能这样做?
PHP:
$data['content'] = utf8_encode($this->_getViewPDF($data['content']));
JS:
var jsonString = utf8_decode(data.content);
var template = "<object type='application/pdf' data= '" + jsonString + "'>";
var windowPrint,
objBrowse = window.navigator;
windowPrint = window.open('', '_blank');
windowPrint.document.write(template);
windowPrint.document.close();
windowPrint.focus();
但浏览器仅显示pdf代码
答案 0 :(得分:0)
将PDF文件生成到可通过Web服务器中的URL访问的临时文件中,然后让脚本发回用于访问该文件的URL。
参考下面的链接