Change layout in the controller of Zend Framework 2.0(在 Zend Framework 2.0 的控制器中更改布局)
问题描述
我正在学习 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');
}
这篇关于在 Zend Framework 2.0 的控制器中更改布局的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Zend Framework 2.0 的控制器中更改布局


基础教程推荐
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01