首页  >  文章  >  后端开发  >  lumen 里路由的 Route::group 怎么用?

lumen 里路由的 Route::group 怎么用?

WBOY
WBOY原创
2016-06-06 20:29:132275浏览

http://lumen.laravel.com/docs/routing#route-groups

在 Namespaces 下有一段话:

<code class="php">$app->group(['namespace' => 'Admin'], function()
{
    // Controllers Within The "App\Http\Controllers\Admin" Namespace

    Route::group(['namespace' => 'User'], function()
    {
        // Controllers Within The "App\Http\Controllers\Admin\User" Namespace
    });
});</code>

Remember, by default, the RouteServiceProvider includes your routes.php file within a namespace group, allowing you to register controller routes without specifying the full App\Http\Controllers namespace prefix. So, we only need to specify the portion of the namespace that comes after the base App\Http\Controllers namespace root.

其中 RouteServiceProvider 这个文件的内容怎么写???

回复内容:

http://lumen.laravel.com/docs/routing#route-groups

在 Namespaces 下有一段话:

<code class="php">$app->group(['namespace' => 'Admin'], function()
{
    // Controllers Within The "App\Http\Controllers\Admin" Namespace

    Route::group(['namespace' => 'User'], function()
    {
        // Controllers Within The "App\Http\Controllers\Admin\User" Namespace
    });
});</code>

Remember, by default, the RouteServiceProvider includes your routes.php file within a namespace group, allowing you to register controller routes without specifying the full App\Http\Controllers namespace prefix. So, we only need to specify the portion of the namespace that comes after the base App\Http\Controllers namespace root.

其中 RouteServiceProvider 这个文件的内容怎么写???

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn