mostwin

23288 经验值

个人理解:随着项目越来越大,我们需要的定义的路由越来越多,只是按照习惯拆分了下。

看下文件 RouteServiceProvider

 protected function mapWebRoutes()
    {
        Route::middleware('web')
             ->namespace($this->namespace)
             ->group(base_path('routes/web.php'));
    }

protected function mapApiRoutes()
    {
        Route::prefix('api')
             ->middleware('api')
             ->namespace($this->namespace)
             ->group(base_path('routes/api.php'));
    }

laravel的事件触发 和 队列在处理视频中需求,效果不是一样的吗?都是解耦,有什么其他的不同吗?

DB::listen(function($sql, $bindings, $time) {
                echo 'SQL语句执行:'.$sql.',参数:'.json_encode($bindings).',耗时:'.$time.'ms'.'<br/>';
            });

我用的2.1.10 换成1.0.4就没问题了