mvc999 发表于 2011-7-21 11:43:53

Hex 发表于 2011-7-20 23:00 static/image/common/back.gif
你说的是什么不支持三层目录?模块里的控制器没必要支持那么深的目录吧。
如果是普通控制器的目录,那跟 ...

哦!明白了!还有一个问题时刻困扰着我,在扩展hmvc后访问的方式为什么还采用

ci原访问模式:
localhost/index.php/控制器/方法/参数/

ci hmvc访问模式:
localhost/index.php/项目/控制器/方法/参数/
这个如何实现呢?

yuhuaan 发表于 2011-7-21 11:55:20

yuhuaan 发表于 2011-7-21 11:39 static/image/common/back.gif
怎么在controllers一运行
class Demo extends CI_Controller {
      public function index() {


已解决

yuhuaan 发表于 2011-7-21 11:55:39

yuhuaan 发表于 2011-7-21 11:39 static/image/common/back.gif
怎么在controllers一运行
class Demo extends CI_Controller {
      public function index() {


已解决{:1_1:}{:2_34:}

Hex 发表于 2011-7-21 14:23:28

mvc999 发表于 2011-7-21 11:43 static/image/common/back.gif
哦!明白了!还有一个问题时刻困扰着我,在扩展hmvc后访问的方式为什么还采用

ci原访问模式:


你说的访问方式应该是 http://domain.com/index.php/模块1/控制器/方法
这样的访问方式暂未实现,争取下一次更新加入这个功能。
而 CI 老的访问方式,不应该去掉,兼容性永远是很重要的。

mvc999 发表于 2011-7-21 14:37:12

Hex 发表于 2011-7-21 14:23 static/image/common/back.gif
你说的访问方式应该是 http://domain.com/index.php/模块1/控制器/方法
这样的访问方式暂未实现,争取下 ...

:lol多谢老大指点!期待老大的修改!

maliang47 发表于 2011-7-28 08:30:31

正好需要,好好研究一下。

zkyy66 发表于 2011-7-28 16:24:58

学习了,学习了

qbz2004 发表于 2011-7-29 10:15:17

CI 2.0 用着没问题吧。

Hex 发表于 2011-7-29 12:38:22

qbz2004 发表于 2011-7-29 10:15 static/image/common/back.gif
CI 2.0 用着没问题吧。

专为 2.0.x 打造

lucky9805 发表于 2011-8-1 17:42:53

       class User_test_module extends CI_Module
        {

                function __construct()
                {
                        parent::__construct();
               
                }
               
                function index(){
                        /*echo "OK";*/
                        $title="用户测试";
                        $this->template->write('title',$title);
            $this->template->write('layout','a_l_m');
      
            $this->template->write_view('main',"test/main");
            $this->template->write_view('sidebar','test/left');
           $this->template->render();        
      }

这里的$this->template 在此模块中是不认的,但$this->template这个应该是个全局的调用,不知道怎么区分?难道每个模块都要放一遍这个libraries?
页: 1 2 3 4 5 6 7 8 9 10 [11] 12 13 14 15 16 17 18 19 20
查看完整版本: [3.0.6]为 CI 增加 HMVC 支持【更新日期:2016.4.25】