我正在写一个 Joomla!组件,完成任务后,我想用消息重定向用户:
$this->setMessage("Your order was placed successfully.");
$this->setRedirect(JRoute::_('index.php?option='.$this->option.'&view=orders', false));
在浏览器中,这会重定向到http://localhost:64895/component/mycomponent/?view=orders
. 但是,我有一个链接到该视图的菜单项,并且我通常在http://localhost:64895/orders.html
.
是否可以JRoute
定位此菜单项而不是标准 SEF URL?