How do you make Zend Framework NOT render a view/l

2019-03-08 05:22发布

Zend's documentation isn't really clear on this.

The problem is that, by default, Zend automatically renders a view at the end of each controller action. If you're using a layout - and why wouldn't you? - it also renders that. This is fine for normal Web pages, but when you're sending an AJAX response you don't want all that. How do you prevent Zend from auto-rendering on an action-by-action basis?

3条回答
走好不送
2楼-- · 2019-03-08 05:53

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
...
}
查看更多
我只想做你的唯一
3楼-- · 2019-03-08 06:08

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.

查看更多
在下西门庆
4楼-- · 2019-03-08 06:08

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

public function someAction()
{
    echo json_encode($data);
    die();
}
查看更多
登录 后发表回答