我在我的项目中制作了一个下载表单,但问题是当我下载文件并且我试图打开它时,Zend渲染器正在添加我的布局html代码...我读到我必须禁用渲染器和布局。但问题是tjat我必须在我自己的帮助器中执行此操作,而不是在控制器文件中,因为我需要在该帮助文件中进行下载。 我的下载功能是这样的:
<?php
class Zend_View_Helper_EditArticles extends Zend_View_Helper_Abstract
{
public function EditArticles()
{
//some code here, getting data from db table
//and now the download
if (isset($_POST['downloadarticle' . $i])) {
//this is probably bad and its not working as it should
//(?)Zend_Controller_Action_HelperBroker::getStaticHelper('viewRenderer')->setNoRender(true);
//(?)Zend_Controller_Action_HelperBroker::getStaticHelper('layout')->disableLayout();
$targetPath = $_SERVER['DOCUMENT_ROOT'] . '/articles/';
$file = $articles->GetArticleToDownload($_POST['art_id' . $i]);
$name = $file['name'];
$path = $file['path'];
$getfile = str_replace('//', '/', $targetPath) . $path . '.pdf';
$size = $file['size'];
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header("Content-Disposition: attachment; filename=$name.pdf");
header("Content-length: $size");
header('Content-Transfer-Encoding: binary');
readfile($getfile);
break;
}
}
echo $this->view->partial('/index/index.phtml','EditArticles');
当我下载PDF时,Adobe Reader无法打开它(当我下载其他文件时,它们也无法打开)。我用记事本打开它们,在PDF内容之前有很多HTML布局代码......我做错了什么?
在Adobe Reader中,我收到此消息:
Adobe Reader无法打开'filename.pdf',因为它不是受支持的文件类型,或者因为文件已损坏,例如,它是作为电子邮件附件发送的,但未正确解码)。
答案 0 :(得分:1)
该代码不属于视图助手。它属于控制器或者是 action 帮助器。
控制器中的这样的东西应该可以工作:
$this->_helper->layout()->disableLayout();
$this->_helper->viewRenderer->setNoRender(true);
// ...
$this->getResponse()
->setHeader('Content-Description', 'File Transfer', true)
->setHeader('Content-Type', 'application/pdf', true) // change to application/pdf
->setHeader('Content-Disposition', "attachment; filename={$name}.pdf", true)
->setHeader('Content-length', $size, true)
->setHeader('Content-Transfer-Encoding', 'binary', true)
->appendBody(readfile($getfile));
答案 1 :(得分:0)
以下两行代码应该可以满足您的需求,并且可以在Zend应用程序的任何位置使用。
Zend_Layout::getMvcInstance()->disableLayout();
Zend_Controller_Front::getInstance()->setParam('noViewRenderer', true);