0

loginAction在一个模块user中,在控制器中application/modules/user/controllers/AuthController.php。我想在成功登录后重定向到indexActionin application/controllers/IndexController.php。所以我有这个:

if ($result->isValid()) {
            $auth->getStorage()->write($adapter->getResultRowObject());

            $this->_helper->redirector('index', 'index');

            return;
}

当我现在登录时,我收到消息Message: Invalid controller specified (index)。我想这是因为我的登录名在模块user中,而IndexController在根应用程序中。

我怎样才能解决这个问题?

4

1 回答 1

4

redirector() 动作助手有几种方法来重定向请求。

试试这个,应用程序/控制器的控制器在“默认”模块中:

if ($result->isValid()) {
    $auth->getStorage()->write($adapter->getResultRowObject());
    //redirector($action, $controller, $module)
    $this->_helper->redirector('index', 'index', 'default');
}

我更喜欢使用这个助手的方式更明确,所以我不必记住默认值:

 if ($result->isValid()) {
        $auth->getStorage()->write($adapter->getResultRowObject());
        //gotoSimple($action, $controller, $module, $params = array())
        $this->getHelper(redirector)->gotoSimple('index', 'index', 'default');
        //or use gotoUrl($url)
        $this->getHelper(redirector)->gotoUrl('/index/index');
        //or use gotoRoute()
        $this->getHelper(redirector)->gotoRoute('action'=>'index', 'controller'=>'index', 'module' => 'default');
    }

以及快速而肮脏的实用方法:

 if ($result->isValid()) {
        $auth->getStorage()->write($adapter->getResultRowObject());
        //_redirect($url);
        $this->_redirect('/index/index');
    }

希望这可以帮助

于 2012-12-08T10:44:50.167 回答