ZF2 addChild另一个模块的ViewModel

时间:2012-10-03 18:39:21

标签: zend-framework2

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

$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'
        ),
    ),
),

这是对的吗?

1 个答案:

答案 0 :(得分:0)

嗨,我认为你需要先使用前进

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;
}

我希望这会有所帮助

或者如果您只想更改模板,请参阅Different layout file for different controller