在 Zend Framework 2.0 的控制器中更改布局

2021-12-29 00:00:00 php zend-framework zend-framework2

我正在学习 ZF2.0 测试版.在 ZF1 中,我们可以在控制器中动态更改布局:

I am learning ZF2.0 beta. In ZF1 we can change layout on the fly in controller:

Zend_Layout::getMvcInstance()->setLayout('layoutname');

但在 ZF2.0 ZendLayout 类中没有方法 getMvcInstance().我认为可以使用依赖注入来实现,但不确定.

But in ZF2.0 ZendLayout class doesn't has method getMvcInstance(). I think that it can be made using dependency injections but not sure.

推荐答案

ZF2 正在大量开发中,不能保证现在的工作方式,当 ZF2 达到稳定状态时会是它的工作方式.

The ZF2 is heavily under development and no guarantee can be made the way it works now, will be the way it works when ZF2 reaches a stable state.

>

但是,来自 ZendMvc 的新视图层最近已合并,因此您现在应该能够执行此操作(使用当前主控):

However, the new view layer from ZendMvc is recently merged so you should be able to do this now (with current master):

public function somethingAction () 
{
    // Do some intelligent work

    $this->layout('layout/different');
}

相关文章