所以我正在开发一个应用程序,我对控制器进行了一些 ajax 调用,如果没有数据会抛出 404。
throw new Zend_Controller_Action_Exception('This page does not exist', 404);
问题是我$this->frontController->throwExceptions(true);
在开发模式下会抛出错误,但它没有设置 404 标头,我需要标头,因为在基于标头的 ajax 调用中,我知道接下来会发生什么。
有没有办法在throwExceptions
设置为的开发模式下抛出 404 标头true
?