1

当我尝试构建语言切换器路由时,我不断得到路由 <>

Route::group(['prefix'=>'{language}'],function (){

    Route::get('/', function () {
        return view('welcome');
    });

    <li class="nav-item">
                            <a href="{{ route(Route::currentRouteName(), 'tw') }}" class="nav-link">TW</a>
                        </li>
4

1 回答 1

2

Route::currentRouteName()null如果路线没有名称,将返回,试试这个:

Route::group(['prefix'=>'{language}'],function (){

    Route::get('/', function () {
        return view('welcome');
    })->name('example_name_here');

});

为路由分配名称以获取其名称。希望这会奏效

于 2020-01-31T14:35:55.923 回答