调度程序异常后如何重定向?
在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果设置了,Zend 将重定向到 ErrorController。
请参阅12.10.5.2 节。
Zend will redirect to ErrorController if it is set.
See Section 12.10.5.2.
ZendFramework 有一个 帮助器类 用于处理重定向。
示例用法(从您的控制器):
您还可以直接从您的控制器调用重定向,即
ZendFramework has a helper class for handling redirects.
Sample usage (from your controller):
You can also call redirect directly from your controller, i.e.