私はこのテストコードを使用しています..私はモジュールと呼ばれ
、コントローラーコードms
と呼ばれる別のモジュールがあります:test
test
<?php
class Test extends MX_Controller {
public function __construct()
{
parent::__construct();
$this->template->title($this->config->item('site_name','app'));
}
public function index()
{
$this->template->build('index');
}
}
内部のコードms
は次のとおりです。
<?php
//ms module
class Msrofi extends MX_Controller {
public function __construct()
{
parent::__construct();
$this->template->title($this->config->item('site_name','app'));
}
public function index()
{
$t = Modules::run('test/test/index');
var_dump($t);
$this->template->build('index_message');
}
}
問題は、内部のビルド関数がビューフォルダーではなくビューフォルダー内のビューファイルtest
を見つけようとしていることです..チェックしたところ、モジュール名がわかりました..誰かがそれを修正する方法を知っています??index
ms
test
$this->_module
ms