How do you make Zend Framework NOT render a view/layout when sending an AJAX response? How do you make Zend Framework NOT render a view/layout when sending an AJAX response? ajax ajax

How do you make Zend Framework NOT render a view/layout when sending an AJAX response?


Call this code from within whatever Action(s) is/are going to be sending AJAX responses:

$this->_helper->layout->disableLayout();$this->_helper->viewRenderer->setNoRender(TRUE);

This disables the Layout engine for that action, and it turns off automatic view rendering for that action. You can then just "echo" whatever you want your AJAX output to be, without worrying about the normal view/layout stuff getting sent along for the ride.


If your AJAX is returning JSON you can use JSON action helper:

$this->_helper->json($data);

This helper will json_encode your $data, output it with JSON headers and die at last, so we getting clean JSON returned from action without layout and view rendering.

f.e. I am using this construction in action beginning to avoid multiple ACL checks for different actions just-for-ajax

public function photosAction() {if ($this->getRequest()->getQuery('ajax') == 1 || $this->getRequest()->isXmlHttpRequest()) {    $params = $this->getRequest()->getParams();    $result = false;     switch ($params['act']) {        case 'deleteImage':           //deleting something           ...           $result = true; //ok           break;        default :           $result = array('error' => 'Invalid action: ' . $params['act']);           break;      }    $this->_helper->json($result);}// regular action code here...}


Or you could simply put die() function at the end of the action

public function someAction(){    echo json_encode($data);    die();}