调度程序异常后如何重定向?

发布于 2024-08-08 01:07:39 字数 313 浏览 5 评论 0原文

在我的 bootstrap 文件内的 zend 框架上,我有以下代码:

$frontController = Zend_Controller_Front::getInstance(); 

try 
{
    $front->dispatch();
} 
catch (Exception $e) 
{
    echo "Something wrong happen";
}

相反,我想重定向到自定义控制器的丑陋消息...如果我不能使用 $frontController 来重定向...,我该怎么做?

感谢您的帮助..

On zend framework inside my bootstrap file i have the following code:

$frontController = Zend_Controller_Front::getInstance(); 

try 
{
    $front->dispatch();
} 
catch (Exception $e) 
{
    echo "Something wrong happen";
}

Instead the ugly message i want to redirect to a custom controller... how can i do that if i can not use $frontController to redirect .... ?

Thanks for your help..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

帝王念 2024-08-15 01:07:39

如果设置了,Zend 将重定向到 ErrorController。

默认情况下,Zend_Controller_Plugin_ErrorHandler 将转发到 ErrorController::errorAction()

请参阅12.10.5.2 节。

Zend will redirect to ErrorController if it is set.

By default, Zend_Controller_Plugin_ErrorHandler will forward to ErrorController::errorAction()

See Section 12.10.5.2.

杀手六號 2024-08-15 01:07:39

ZendFramework 有一个 帮助器类 用于处理重定向。

示例用法(从您的控制器):

$redirectHelper = $this->_helper->getHelper('Redirector');
$redirectHelper->gotoUrl('controller/action');

您还可以直接从您的控制器调用重定向,即

$this->_redirect($url);

ZendFramework has a helper class for handling redirects.

Sample usage (from your controller):

$redirectHelper = $this->_helper->getHelper('Redirector');
$redirectHelper->gotoUrl('controller/action');

You can also call redirect directly from your controller, i.e.

$this->_redirect($url);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文