我创建了一个由html表单组成的joomla组件,当我尝试浏览它时:
index.php?option = com_helloworld
我收到错误404,找不到组件。
我正在关注这个tutuorial:
http://docs.joomla.org/Developing_a_Model-View-Controller_Component/2.5/Developing_a_Basic_Component
有人可以告诉我如何浏览页面吗?
更新:这是我的示例组件的链接,它是一个基本的html表单。
非常感谢
答案 0 :(得分:0)
IIRC,即使组件安装不正确,根据我的经验,您仍然可以访问服务器上的代码。但这可能只是一件事。
如果你没有通过传递& view = viewname来指定URL中的视图,并且你没有设置默认的回退视图,那么你就不能指望出现任何结果。
有关如何设置默认视图的好例子,请查看components/com_contact/controller.php
第38行。
在主控制器的显示方法中:
// Set the default view name and format from the Request. $vName = $this->input->get('view', 'categories'); $this->input->set('view', $vName);