我正在尝试用这段代码将路由实现到我的bootstrap文件中;
protected function _initRoutes() { $router = $this->getResource('frontController')->getRouter(); $router->addRoute( 'profil',new Zend_Controller_Router_Route ( 'profil/:username',array ( 'controller' => 'users','action' => 'profil' ) ) ); }
但它不起作用,因为我在’错误中的非对象上调用成员函数getRouter().
如何从bootstrap获取控制器?
我相信你的问题在于你在哪里打电话
原文链接:https://www.f2er.com/php/138050.html$this->getResource('frontController')->getRouter()
FrontController资源尚未初始化.
我以这种方式调用了相同的方法(这在Zend Framework 2.0中不起作用,但现在可以工作):
Zend_Controller_Front::getInstance()->getRouter();
或者,您可以确保您的前端控制器已初始化为:
$this->bootstrap('FrontController'); $front = $this->getResource('FrontController');