使用 HMVC 路由 Codeigniter
我将 Codeigniter 与 Datamapper 和 HMVC 结合使用。查看文件夹结构:
-application
-controllers
-admin
-admin.php
-modules
-users
-models
-controllers
-views
现在我想调用我的管理控制器,但该控制器中的功能仅在索引中找不到。我的模块控制器路由正确。建议?
I'm using Codeigniter in combination with Datamapper and HMVC. see folder structure:
-application
-controllers
-admin
-admin.php
-modules
-users
-models
-controllers
-views
Now i want to call my admin controller but the functions within this controller are not found only the index. my module controllers are routing correctly. suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果
admin/
是一个模块,您可以使用/admin/method
访问它,但由于它位于常规控制器目录中,因此您需要转到管理/管理/方法
。您可以为controllers目录内的子目录指定默认控制器,但如果不传递参数,它只会调用index方法。If
admin/
was a module, you would be able to access this with/admin/method
but since it's in the regular controllers directory, you would need to go toadmin/admin/method
. You can specify a default controller for a sub-directory inside the controllers directory, but it will only call the index method if no parameters are passed.