我有这个正在使用的测试代码..我有一个名为的模块
,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
试图在views文件夹而不是views文件夹中找到index
视图文件..我检查了它,它给了我模块名称..有人知道如何解决这个问题吗?ms
test
$this->_module
ms