7

如何禁用布局渲染?

有那么一刻,我可以通过这种方式检测到该请求是通过 jQuery 发出的:

public function initialize()
{
    if (!$this->request->isAjax()) {
        // disable layout here... how?
    }
}

可以在全球范围内完成吗?

所有控件的处理ajax请求的代码都是相同的,有没有办法为整个应用程序全局定义这个行为规则?

4

1 回答 1

17
public function initialize()
{
    if (!$this->request->isAjax()) 
    {
        // disable layout here... how?
        $this->view->setRenderLevel(\Phalcon\Mvc\View::LEVEL_ACTION_VIEW);
    }
}

您也可以通过调用禁用自动渲染

$this->view->disable();
于 2012-12-18T03:18:07.037 回答