17

如何在控制器操作中呈现不同于默认视图的不同视图。默认情况下,它会尝试在视图文件夹中找到与操作相同的视图,但我想在视图文件夹中呈现不同的视图以进行控制器操作。

我们可以这样做这个ZF1$this->_helper->viewRenderer('foo');

谁能知道,如何在 Zendframework 2 中实现上述目标?

我们可以使用禁用视图

$response = $this->getResponse();
        $response->setStatusCode(200);
        $response->setContent("Hello World");
        return $response;

我不知道如何在 zf2 中更改/呈现不同的视图。

4

2 回答 2

50

可以使用

public function abcAction()
{
    $view = new ViewModel(array('variable'=>$value));
    $view->setTemplate('module/controler/action.phtml'); // path to phtml file under view folder
    return $view;
}

感谢akrabat几乎涵盖了所有场景。

于 2012-08-24T12:48:12.353 回答
2

我在 Zend Framew 2 中的解决方案很简单。对于索引操作,我更喜欢调用parrent::indexAction()构造函数 bcs 我们扩展Zend\Mvc\Controller\AbstractActionController。或者只是在 indexAction 中返回 array() 。ZF 将自动返回 index.pthml 而没有定义必须返回的内容。

return new ViewManager()是相同的return array()

<?php

 namespace Test\Controller;

 use Zend\Mvc\Controller\AbstractActionController,
     Zend\View\Model\ViewModel;

 // Or if u write Restful web service then use RestfulController
 // use Zend\Mvc\Controller\AbstractRestfulController

 class TestController extends AbstractActionController
 {
    /*
     * Index action
     *
     * @return main index.phtml
     */

     public function indexAction()
     {
          parent::indexAction();

          // or return new ViewModel();
          // or much simple return array();
     }

    /*
     * Add new comment
     *
     * @return addComment.phtml
     */

     public function addAction()
     {
         $view = new ViewManager();
         $view->setTemplate('test/test/addComment.phtml');  // module/Test/view/test/test/

      return $view;
     }

不要忘记在 module/config/module_config 中配置 route 和 view_manager

  'view_manager' => array(
        'template_path_stack' => array(
            'Test' => __DIR__ . '/../view',
        ),
    ),
于 2013-07-25T15:24:17.817 回答