问题:有时在我们的zend控制器中,我们不希望脚本直接输出,而是希望脚本的内容。例如:当我们需要一个视图脚本的结果html输出包含在另一个结构(如JSON或XML)中,以便在客户端进行处理时。
我在stack overflow中发现了这个结果,但不是很快,因为它位于不同的上下文中。我已经挣扎了两天了。结果很简单:
// in our controllers' action method
$this->_helper->layout()->setLayout('empty'); // disable layout
$this->_helper->viewRenderer->setNoRender(true); // make sure the script is not being rendered
// any of your code here
$html = $this->view->render('projects/climate.phtml'); // return the view script content as a string
$json = array('html'=>$html, 'initData'=>'my other needed data');
echo json_encode($json);
我希望这是明确的,将是有用的人。