我估计我们所有人都遇到过这样的情况,即我们有一个写满路由的超大文件。不骗你,这让我很长一段时间几近抓狂,我不得不想个办法解决这个问题。 因此,这就是我最终用来构造路由文件的方法。
最初,我想到了利用路由组方法可以接收文件,这就是 laravel 在 routerviceprovider 处拆分路由的方式。
<?phpnamespace app\providers;u illuminate\foundation\support\providers\routerviceprovider as rviceprovider;u illuminate\support\facades\route;class routerviceprovider extends rviceprovider{ /** * this namespace is applied to your controller rout北大青鸟多少学费es. * * in情侣头像带字 addition, it is t as the url generator's root namespace. * * @var string */ protected $namespace = 'app\http\controllers'; /** * define your route model bindings, pattern filters, etc. * * @return void */ public function boot() { // parent::boot(); } /** * define the routes for the application. * * @return void */ public function map() { $this->mapapiroutes(); $this->mapwedwg是什么格式broutes(); // } /** * define the "web" routes for the application. * * the routes all receive ssion state, csrf protection, etc. * * @return void */ protected function mapwebroutes() { route::middleware('web') ->namespace($this->namespace) ->group(ba_path('routes/web.php')); } /** * define the "api" routes for the application. * * the routes are typically stateless. * * @return v校本研修计划oid */ protected function mapapiroutes() { route::prefix('api') ->middleware('api') ->namespace($this->namespace) ->group(ba_path('routes/api.php')); }}
我将与用户有关的路由抽象到了一个名为 urs.php 的文件中,并将 mapapiroutes 复制为 mapursroutes 并指向到我的 urs.php 文件。
/** * define the routes for the application. * * @return void */ public function map() { $this->mapapiroutes(); $this->mapwebroutes(); $this->mapursroutes(); // }/** * define the "api" routes for the application. * * the routes are typically stateless. * * @return void */ protected function mapursroutes() { route::prefix('api') ->middleware('api') ->namespace($this->namespace) ->group(ba_path('routes/urs.php')); }
我知道您在想什么,显然,这并不是最好的解决方案,因为每当我们需要创建新文件时,都必须像之前一样注册它。 因此,我不得不改进这个最初的想法。
我想到了将整个应用程序中的公共部分拆分成单独的路由文件,并且我想到我们的所有路由都不能超出已认证、访客和公共路由的范围。
我将路由文件夹的结构优化成下面这样:
├── routes │ ├── api │ │ ├── public│ | │ ├── urs.php │ │ ├── auth│ | │ ├── urs.php │ │ ├── guest│ | │ ├── urs.php
乍一看,您可能会认为 “嗯,它并没有太大变化,我们还是需要去映射这些文件”。 但是,实际上我们可以利用 php 原生提供的名为 glob 的函数,这是一种开箱即用的解决方案,因为我们没有与 laravel 的解决方案耦合。
glob 接收一个正则,并且可以在与我们的正则匹配的路径下找到文件名。 因此,我们的路由是在特定文件夹下组织的,我们现在可以在这些文件夹下找到所有文件,并将它们注册到其中间件。
<?phpnamespace app\providers;u illuminate\foundation\support\providers\routerviceprovider as rviceprovider;u illuminate\support\facades\route;class routerviceprovider extends rviceprovider{ /** * this namespace is applied to your controller routes. * * in addition, it is t as the url generator's root namespace. * * @var string */ protected $namespace = 'app\http\controllers'; /** * define the routes for the application. * * @return void */ public function map() { $this->mapauthroutes(); $this->mapguestroutes(); $this->mappublicroutes();// $this->mapwebroutes(); // } /** * define the "web" routes for the application. * * the routes all receive ssion state, csrf protection, etc. * * @return void */ protected function mapwebroutes() { route::middleware('web') ->namespace($this->namespace) ->group(ba_path('routes/web.php')); } /** * define the "api" routes for the application. * * the routes are typically stateless. * * @return void */ protected function mapauthroutes() { foreach (glob(ba_path('routes/api/auth/*.php')) as $file) { route::prefix('api') ->middleware(['api', 'auth:api']) ->group($file); } } protected function mapguestroutes() { foreach (glob(ba_path('routes/api/guest/*.php')) as $file) { route::prefix('api')贺知章 ->middleware(['api', 'guest:api']) ->group($file); } } protected function mappublicroutes() { foreach (glob(ba_path('routes/api/public/*.php')) as $file) { route::prefix('api') ->middleware('api') ->group($file); } }}
现在,无论何时我们创建一个新文件,foreach 都将找到它,因为它是使用正则匹配(该文件位于对应的路径下,并且具有 php 扩展名,因此它与我们的正则匹配)。简直太骚了!但是请稍等片刻。
这些文件将如何注册?
如果您研究过 laravel 的生命周期,您就知道服务提供者是 laravel 请求的生命周期的一部分,我们可以利用此功能动态注册我们的路线。
就是这样!我希望您喜欢它。
译文地址:https://learnku.com/laravel/t/42989
以上就是一种颗粒度很小的 laravel 路由文件划分方式
更多学习内容请访问:
腾讯t3-t4标准精品php架构师教程目录大全,只要你看完保证薪资上升一个台阶(持续更新)
本文发布于:2023-04-08 11:18:04,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/478896de6f999590938dc4337bad9d5b.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:一种颗粒度很小的 Laravel 路由文件划分方式.doc
本文 PDF 下载地址:一种颗粒度很小的 Laravel 路由文件划分方式.pdf
留言与评论(共有 0 条评论) |