当前位置:Gxlcms > PHP教程 > lumen里路由的Route::group怎么用?

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

时间:2021-07-01 10:21:17 帮助过:12人阅读

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

在 Namespaces 下有一段话:

$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
    });
});

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 下有一段话:

$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
    });
});

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 这个文件的内容怎么写???

人气教程排行