尝试下载 PDF 时出现此错误。在创建 PDF 之前,代码似乎期望 xml 字符串在屏幕上回显某些内容。
我在设置中错过了什么吗?我已按照本网站http://bakery.cakephp.org/articles/Casmo/2010/06/26/creating-pdf-files-with-html2ps-html2pdf解释的步骤进行操作。
尝试下载 PDF 时出现此错误。在创建 PDF 之前,代码似乎期望 xml 字符串在屏幕上回显某些内容。
我在设置中错过了什么吗?我已按照本网站http://bakery.cakephp.org/articles/Casmo/2010/06/26/creating-pdf-files-with-html2ps-html2pdf解释的步骤进行操作。
嗨,潘卡伊,
Cakephp 1.3.X : 在 PdfComponent 我们使用
// 包含类文件并创建 Html2ps 实例
App::import('vendor', 'Html2PsConfig', array('file' => 'html2ps'.DS.'config.inc.php'));
App::import('vendor', 'Html2Ps', array('file' => 'html2ps'.DS.'pipeline.factory.class.php'));
parse_config_file(APP .'vendors'. DS .'html2ps'. DS .'html2ps.config');
Cakephp 2.3.X:在 PdfComponent 中,您必须更改与下面相同的代码..
// 包含类文件并创建 Html2ps 实例
App::import('Vendor', 'Html2PsConfig', array('file' => 'html2ps'.DS.'config.inc.php'));
App::import('Vendor', 'Html2Ps', array('file' => 'html2ps'.DS.'pipeline.factory.class.php'));
parse_config_file(APP .'Vendor'. DS .'html2ps'. DS .'html2ps.config');
试试这个可能对你有帮助.. :-)