使用 HMVC 路由 Codeigniter

发布于 2024-12-08 18:51:23 字数 283 浏览 0 评论 0原文

我将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

马蹄踏│碎落叶 2024-12-15 18:51:23

如果 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 to admin/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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文