KO3 带目录的路由

发布于 2024-10-11 02:26:24 字数 409 浏览 7 评论 0原文

为我的控制器创建路线时遇到问题。

我想在目录中组织控制器,并将一个控制器放入用户目录中。但是我不知道如何访问它。

127.0.0.1/login/index,我希望它看起来像这样 127.0.0.1/users/login。我将控制器移至用户目录中,但不知道如何强制我的路线正常工作。

以下路线不起作用:

Route::set('users', 'users(/<controller>(/<action>))')
    ->defaults(array(
        'controller' => 'login',
        'action'     => 'index',
    ));

Have a problem with creating route for my controller.

I'd like to organize controllers in directories and I put one controller into users directory. However I have no idea how to access it.

There's 127.0.0.1/login/index and I want it to look like this 127.0.0.1/users/login. I moved controller into users directory however have no idea how to force my route to work correctly.

Following route is not working:

Route::set('users', 'users(/<controller>(/<action>))')
    ->defaults(array(
        'controller' => 'login',
        'action'     => 'index',
    ));

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

明天过后 2024-10-18 02:26:24

路由有一个 directory 参数,使用它:

Route::set('users', 'users(/<controller>(/<action>))')
    ->defaults(array(
        'directory'  => 'users',
        'controller' => 'login',
        'action'     => 'index',
    ));

您也可以将目录作为动态路由参数传递:

Route::set('users', '<directory>(/<controller>(/<action>))')
    ->defaults(array(
        'controller' => 'login',
        'action'     => 'index',
    ));

这里我们不需要默认目录值,因为它是必需的。您可以使用正则表达式(Route::set() 方法中的第三个参数)设置值的范围。

附言。我喜欢帐户操作的简短路线:

Route::set('users', '<action>', array('action' => '(login|logout|register)'))
        ->defaults(array(
          'controller' => 'account',
        ));

因此, http://example.com/loginhttp://example.com/logout 可以使用。

Route has a directory param, use it:

Route::set('users', 'users(/<controller>(/<action>))')
    ->defaults(array(
        'directory'  => 'users',
        'controller' => 'login',
        'action'     => 'index',
    ));

Also you can pass directory as dynamic route param:

Route::set('users', '<directory>(/<controller>(/<action>))')
    ->defaults(array(
        'controller' => 'login',
        'action'     => 'index',
    ));

Here we dont need default directory value because its required. You can set range of values using regex (third arg in Route::set() method).

PS. I like short routes for account actions:

Route::set('users', '<action>', array('action' => '(login|logout|register)'))
        ->defaults(array(
          'controller' => 'account',
        ));

So, http://example.com/login and http://example.com/logout will work.

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