-1

嗨,大家好。

在这里,我有一个非常简单的问题。

算我一个

modules/guestbook/admin.php 

我想从不同的模块加载模型

modules/admin/models/

这种方法:

$this->load->model('someModel', 'someModel'); is not working bcz HMVC is looking only in the same module the controller is in or in application/models/ 

有人可以向 Josh Yudell 建议如何使用 HMCV 做到这一点。我尝试使用

Modules::find,Modules::load Modules::load_file, bt there is no result with it.

提前致谢。乔什·尤德尔

4

2 回答 2

0

我建议您应该为您的负载提供模块目录的路径。您还没有在您工作的环境中提供您的问题。

在结构更严格的codeigniter HMVC中:

 Modules::run('admin/get_account_details_model'); or $this->load->module('admin/get_account_details_model');
于 2013-05-29T15:02:21.087 回答
0

从留言簿模块内部调用管理模块怎么样。您不应该直接访问模型。

于 2013-05-06T02:14:11.150 回答