按照手册上的定义路由的全局模式怎么没用

跟手册上一模一样的代码,在boot方法里面定义的全局模式,不管是在调用父类方法前调用还是在调用父类方法后调用还是注释了父类方法都没有用,请问这是咋回事儿?
已邀请:

Mr_Jing

赞同来自: wenyudengdeng

php artisan clear-compiled

public function boot(Router $router) {
    $router->pattern('username', '[a-zA-Z0-9_-]+');

    parent::boot($router);
}

或者直接在routes.php中
Router::pattern('username', '[a-zA-Z0-9_-]+');

要回复问题请先登录注册