【发布时间】:2014-09-25 14:59:54
【问题描述】:
所以基本上我正在尝试下载文件。
我已经行动了:
public function getfile() {
$this->autoRender = false;
$accesskey = 'mrPQVeJF8VFXpSq';
$data = $this->File->find('first', array('conditions' => array('File.accesskey =' => $accesskey)));
$filepath = substr($data['File']['path'], 17);
$this->response->file($filepath, array('download' => true, 'name' => $data['File']['name']));
return $this->response;
}
这会引发错误:(我猜是 $this->response->file() 的行)
致命错误错误:找不到类“文件”文件: C:\wamp\www\project\lib\Cake\Network\CakeResponse.php 行:1347
【问题讨论】: