作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个简单的 Joomla Controller ,但我无法重定向任何内容。
根据文档:
class MyController extends MyBaseController {
function import() {
$link = JRoute::_('index.php?option=com_foo&ctrl=bar');
$this->setRedirect($link);
}
}
//The url contains & html escaped character instead of "&"
这应该有效,但我得到了一个格式错误的 URL。我在这里缺少什么吗?为什么 Joomla 将所有“&”字符转换为 &
?我该如何使用 setRedirect?
谢谢
最佳答案
好的,我修好了。所以如果有人需要它:
代替
$link = JRoute::_('index.php?option=com_foo&ctrl=bar');
$this->setRedirect($link);
使用
$link = JRoute::_('index.php?option=com_foo&ctrl=bar',false);
$this->setRedirect($link);
让它发挥作用。
关于redirect - Joomla setRedirect 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13144101/
setRedirect 后如何防止执行代码? 我已将 setRedirect 放在 Controller 中,它确实重定向到不同的 Controller ,但仍在第一个 Controller 中执行其
我有一个简单的 Joomla Controller ,但我无法重定向任何内容。 根据文档: class MyController extends MyBaseController { functio
我是一名优秀的程序员,十分优秀!