1

我试图在我的布局中添加另一个模块的视图,所以我这样做了:

$layoutTestdrive = new ViewModel();
$layoutTestdrive->setTemplate('testdrive6');
$view = new ViewModel();
$view->addChild($layoutTestdrive);
return $view;

在我的 module.config.php 中,我这样做了:

'Zend\View\Resolver\TemplateMapResolver' => array(
'parameters' => array(
'map'  => array(
    'testdrive6' => __DIR__ . '/../../Testdrive/view/layout/testdrive6.phtml'
        ),
    ),
),

这个对吗?

4

1 回答 1

0

嗨,我认为您需要先使用 forward

public function commentAction(){     

    $list = $this->forward()->dispatch('comment_controrller', array('action' => 'list'));
    $add = $this->forward()->dispatch('comment_controrller', array('action' => 'add'));

    $view =  new ViewModel();
    $view->addChild($list, 'list');
    $view->addChild($add, 'add');
    return $view;
}

我希望这个能帮上忙

或者如果您只想更改模板,请参阅不同控制器的不同布局文件

于 2012-10-10T16:04:11.570 回答