Lan*_*nbo 4 php cakephp cakephp-2.3
在我的控制器动作中,我有这个:
$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();
Run Code Online (Sandbox Code Playgroud)
但是,无论我做什么,CakePHP总是将数据发送为text/html; charset=utf-8.我也试过了
$this->response->header(array('Content-Type' => 'application/x-pdf'));
Run Code Online (Sandbox Code Playgroud)
但它仍然发送它text/html.如何强制使用上面的内容类型发送响应?