我写了一个组件,我在使用jroute构建链接时遇到了麻烦
示例:在我的默认tmpl管理部分中,
如果使用$ link ='' .JRoute :: _(' index.php?option ='。$ option。'& task = tournoi。编辑& id ='。$ row-> tournois_id);
或 $ link = JRoute :: _(' index.php?option ='。$ option。'& task = tournoi.edit& id ='。$ row-> tournois_id);
我得到了
http://joomla_new/administrator/index.php?option=com_tournois&task=generatereport&tid=1" where localhost is missing.
如果我只是添加这样的空间:$ link =' ' .JRoute :: _(' index.php?option ='。$ option。'& task = tournoi.edit& id ='。$ row- > tournois_id);
我得到了
http://localhost/%20/Joomla_new/administrator/index.php?option=com_tournois&task=tournoi.edit&id=1
有人有想法吗?
谢谢!