在我的控制器操作中,我有这个:
$pdf = $this->Invoice->makePdf($invoice);
$this->response->charset('UTF-8');
$this->response->body($pdf);
$this->response->type(array('pdf' => 'application/x-pdf'));
$this->response->disableCache();
$this->response->send();
但是,无论我做什么,CakePHP 总是将数据发送为text/html; charset=utf-8
. 我也试过
$this->response->header(array('Content-Type' => 'application/x-pdf'));
但它仍然以text/html
. 如何强制使用上述内容类型发送响应?