Laravel Routing正则表达式约束如何工作?

时间:2018-12-04 09:21:53

标签: laravel

我正在尝试调试Route中的“ Where”功能,但步履蹒跚。

Route::prefix('/{user}')->group(function () {

    Route::get('/', function (){
        return 'index';
    })->where('user', '^(?!(dashboard)$).*$');
});

Illuminate\Routing\Route.php中有一个方法`public function where($ name,$ expression = null)``

它设置公共变量wheres。但是,我不知道以后使用它的地方。

我的目标是了解user在比较正则表达式时具有什么值。

0 个答案:

没有答案