1
如何獲取ZF2中的插件中的路由,模塊,控制器和操作名?zf2在插件中獲取路由和模塊名稱等
插件被viewHelper使用。
我嘗試了不同的方法,但似乎沒有工作。 這是兩個方法我試過
方法1:
public function __construct(MvcEvent $e)
{
$this->routename = $e->getRouteMatch()->getMatchedRouteName();
}
方法2:
public function __construct()
{
$e = new MvcEvent();
$this->routename = $e->getRouteMatch()->getMatchedRouteName();
}
你嘗試過哪些方法? – edigu
我試圖在構造中實例化mvcEvent,通過viewHelper傳遞它,但每次它返回null或致命錯誤。 – Peter
請顯示一些代碼來理解他人你做錯了什麼。 – edigu