你好,我有一些问题,我使用Codeigniter Modular Extensions - HMVC。
问题是当我试图展示我的模块时。
遇到错误
无法加载请求的文件:quicklinks_show.php
我有两个模块
1.Dashboard 2.Quicklinks
当我尝试在仪表板模块中调用并显示另一个模块时出现问题。 我将此代码放在Dashboard / view / dashboard_view.php模块
中<div id="modules">
<?php modules::run('quicklinks/show');?>
</div>
在我的Quicklinks模块中,我有简单的Show()函数
public function show(){
$this->load->view('quicklinks_show');
}
答案 0 :(得分:1)
确保您将视图文件夹命名为正确,因此控制器* s *,型号* s *并查看* s *
答案 1 :(得分:0)
试试这个拉取请求:
https://github.com/EllisLab/CodeIgniter/pull/1818
我测试了它,看起来这是最好的hmvc解决方案。
在此处下载:https://github.com/dchill42/CodeIgniter/tree/hmvc_unit
答案 2 :(得分:0)
回复可能为时已晚,但您可以在in-depth article of HMVC中找到答案。