-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

ゲストブック モジュール内から管理モジュールを呼び出すのはどうですか。モデルに直接アクセスするべきではありません。

于 2013-05-06T02:14:11.150 に答える
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 に答える