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 的控制器中更改布局
基础教程推荐
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
- 如何替换eregi() 2022-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
