11

假设我们有一个名为 Cart 的模块,并且想要在满足某些条件时重定向用户。我想在应用程序到达任何控制器之前在模块引导阶段放置一个重定向。

所以这里是模块代码:

<?php
namespace Cart;

class Module
{
    function onBootstrap() {
        if (somethingIsTrue()) {
            // redirect
        }
    }
}
?>

本来想用Url控制器插件的,但是这个阶段好像没有控制器实例,至少不知道怎么弄。

提前致谢

4

4 回答 4

31

这应该做必要的工作:

<?php
namespace Cart;

use Zend\Mvc\MvcEvent;

class Module
{
    function onBootstrap(MvcEvent $e) {
        if (somethingIsTrue()) {
            //  Assuming your login route has a name 'login', this will do the assembly
            // (you can also use directly $url=/path/to/login)
            $url = $e->getRouter()->assemble(array(), array('name' => 'login'));
            $response=$e->getResponse();
            $response->getHeaders()->addHeaderLine('Location', $url);
            $response->setStatusCode(302);
            $response->sendHeaders();
            // When an MvcEvent Listener returns a Response object,
            // It automatically short-circuit the Application running 
            // -> true only for Route Event propagation see Zend\Mvc\Application::run

            // To avoid additional processing
            // we can attach a listener for Event Route with a high priority
            $stopCallBack = function($event) use ($response){
                $event->stopPropagation();
                return $response;
            };
            //Attach the "break" as a listener with a high priority
            $e->getApplication()->getEventManager()->attach(MvcEvent::EVENT_ROUTE, $stopCallBack,-10000);
            return $response;
        }
    }
}
?>
于 2013-01-05T10:33:03.103 回答
7

当然它会给你一个错误,因为你必须将你的监听器附加到一个事件上。在以下示例中,我使用 SharedManager 并将侦听器附加到AbstractActionController.

当然,您可以将侦听器附加到另一个事件。下面只是一个工作示例,向您展示它是如何工作的。有关铁道部的信息,请访问http://framework.zend.com/manual/2.1/en/modules/zend.event-manager.event-manager.html

public function onBootstrap($e)
{
    $e->getApplication()->getEventManager()->getSharedManager()->attach('Zend\Mvc\Controller\AbstractActionController', 'dispatch', function($e) {
        $controller = $e->getTarget();
        if (something.....) {
            $controller->plugin('redirect')->toRoute('yourroute');
        }
    }, 100);
}
于 2013-05-18T07:56:34.370 回答
-1

错误时页面无法正确重定向

public function onBootstrap($e) {

        $e->getApplication()->getEventManager()->getSharedManager()->attach('Zend\Mvc\Controller\AbstractActionController', 'dispatch', function($e) {
        if(someCondition==true) {
           $controller->plugin('redirect')->toRoute('myroute');        
        }
}
于 2014-01-06T11:40:23.903 回答
-4

你能试试这个。

$front = Zend_Controller_Front::getInstance();
$response = new Zend_Controller_Response_Http();
$response->setRedirect('/profile');
$front->setResponse($response);
于 2013-01-05T08:52:33.017 回答