2012-02-05 151 views

回答

2

由於每MediaView書頁,只需設置autoRenderfalse和設置您的控制器命名downloadfalse一個視圖變量。同時請確保指定mimeType,因爲大多數瀏覽器將強制下載未知的MIME類型。

實施例:

function download() { 
    $this->view = 'Media'; 
    $this->autoRender = false; // Disable auto-render. 
    $params = array(
     'download' => false, // Don't force download. 
     'id' => 'example.docx', 
     'name' => 'example', 
     'extension' => 'docx', 
     'mimeType' => array('docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document'), // extends internal list of mimeTypes 
     'path' => APP . 'files' . DS 
    ); 
    $this->set($params); 
}