1

我需要在 phalcon 中加载一部分视图以在 ajax 调用中返回。为此,我需要在变量中设置视图。现在发生的事情是我正在获取所有模板,包括页眉和页脚。

4

1 回答 1

3

您需要禁用其余的视图渲染。确切情况示例(为 AJAX 返回 JSON 响应)

$viewParams = [
    'param1' => '....',
    'param2' => '....',
];

$response = new \stdClass();
// Render view into a variable
$this->view->setRenderLevel(\Phalcon\Mvc\View::LEVEL_NO_RENDER);
$response->html = $this->view->getRender('yourTemplateDir', 'yourTemplateName', $viewParams, function($view) {
    $view->setRenderLevel(\Phalcon\Mvc\View::LEVEL_ACTION_VIEW);
});

// Disable view
$this->view->disable();
return $this->response->setJsonContent($response);
于 2016-06-06T14:27:54.173 回答