How to disable render view in zend framework 2?

家住魔仙堡 提交于 2019-12-02 14:57:39
Blanchon Vincent
  • To disable your view :

    public function myactionAction()
    {
        // your code here ...
        return false;
    }
    

"return false" disables the view and not the layout! why? because the accepted types are:

  • ViewModel
  • array
  • null

so "false" disable the view.

  • To disable layout and view, return a response object:

    public function myactionAction()
    {
        // your code here ...
        return $this->response;
    }
    
  • To disable layout:

    public function myactionAction()
    {
        // your code here ...
        $view = new ViewModel();
        $view->setTerminal(true);
        return $view;
    }
    

If you're using JSON, then look at the view's JsonStrategy and return a JsonModel from you controller. See this article.

Alternatively, you can return an Response from your controller and the whole view layer is skipped:

public function testAction()
{
    $response = $this->getResponse();
    $response->setStatusCode(200);
    $response->setContent('foo');
    return $response;
}   

Proper and simple solution to do this

public function testAction()
{
    $data = array(
        'result' => true,
        'data' => array()
    );
    return $this->getResponse()->setContent(Json::encode($data));
}

Details: http://cmyker.blogspot.com/2012/11/zend-framework-2-ajax-return-json.html

Svyatoslav Tretyak

I found some answer.

Though $this->layout()->getLayout() returns the name/path of the newly selected layout... The layout does not change with any of the following commands...

within a controller

$this->getLocator()->get('view')->layout()->setLayout('layouts/ajax.phtml');
$this->getLocator()->get('view')->layout()->setLayout('ajax');
$this->getLocator()->get('view')->layout()->disableLayout();

within a view PHTML file

$this->layout()->setLayout('layouts/ajax.phtml');
$this->layout()->setLayout('ajax');
$this->layout()->disableLayout();

$view = new ViewModel(); $view->setTerminate(true);

...
use Zend\View\Model\JsonModel;

public function myAction() {
    ...

    $view = new JsonModel($myArray);
    $view->setTerminal(true);
    return $view;
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!