gpt4 book ai didi

php - Zend Framework 2中如何获取 Controller 名称、 Action 名称

转载 作者:可可西里 更新时间:2023-10-31 23:52:27 30 4
gpt4 key购买 nike

我在 Zend Framework 2 中有一个默认模块:

namespace Application\Controller;

use Zend\Mvc\Controller\AbstractActionController;
use Zend\View\Model\ViewModel;

class IndexController extends AbstractActionController
{
public function indexAction()
{
return new ViewModel();
}
}

如何获取当前 Controller 的名称或操作名称...并将其传递给 View 和/或布局?不得不说,我刚刚开始使用 ZF2 框架。

最佳答案

尝试如下ZF2

$this->getEvent()->getRouteMatch()->getParam('action', 'index'); 

$this->getEvent()->getRouteMatch()->getParam('controller', 'index');

关于php - Zend Framework 2中如何获取 Controller 名称、 Action 名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12883598/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com