Laravel最佳分割路由檔案(routes.php)的方式

來源:互聯網
上載者:User
本文是一篇關於Laravel分割路由檔案(routes.php)的最佳方式教程文章,內容介紹的很詳細,學習Laravel的小夥伴可以參考學習。

前言

Laravel 的路由功能很強大,預設都是定義在 routes.php 檔案中,隨著項目越來越大,我們需要的定義的路由越來越多,想象一下,如果幾百上千個路由都定義在一個檔案中,如何去維護?也許還有不同的人都在同一個檔案定義路由,這就造成了衝突,因此我們需要分割 routes.php 檔案。

下面介紹一種很優雅的方式。

app/Providers/RouteServiceProvider.php map 方法中可以如下定義:

public function map(Router $router){  $router->group(['namespace' => $this->namespace], function ($router) {    //require app_path('Http/routes.php');    foreach (glob(app_path('Http//Routes') . '/*.php') as $file) {      $this->app->make('App\\Http\\Routes\\' . basename($file, '.php'))->map($router);    }  });}

檔案組織圖如下:

這樣它會遍曆 app/Http/Routes/ 檔案夾下的檔案,遍曆每個檔案路由類的 map 方法,每個檔案的結構都類似,

舉個例子:

<?php/** * Created by PhpStorm. * User: xl * Date: 2016/7/4 * Time: 18:07 */namespace App\Http\Routes;use Illuminate\Contracts\Routing\Registrar;class HomeRoutes{  public function map(Registrar $router)  {    $router->group(['domain' => 'www.tanteng.me', 'middleware' => 'web'], function ($router) {      $router->auth();      $router->get('/', ['as' => 'home', 'uses' => 'IndexController@index']);      $router->get('/blog', ['as' => 'index.blog', 'uses' => 'BlogController@index']);      $router->get('/resume', ['as' => 'index.resume', 'uses' => 'IndexController@resume']);      $router->get('/post', ['name' => 'post.show', 'uses' => 'ArticleController@show']);      $router->get('/contact', ['as' => 'index.contact', 'uses' => 'IndexController@contact']);      $router->post('/contact/comment', ['uses' => 'IndexController@postComment']);      $router->get('/travel', ['as' => 'index.travel', 'uses' => 'TravelController@index']);      $router->get('/travel/latest', ['as' => 'travel.latest', 'uses' => 'TravelController@latest']);      $router->get('/travel/{destination}/list', ['as' => 'travel.destination', 'uses' => 'TravelController@travelList']);      $router->get('/travel/{slug}', ['uses' => 'TravelController@travelDetail']);      $router->get('/sitemap.xml', ['as' => 'index.sitemap', 'uses' => 'IndexController@sitemap']);    });  }}

把路由規則都寫到每個檔案的 map 方法中,這樣一來,就實現了很好的 routes.php 檔案的分開管理。此外,你也可以簡單的分割,直接把 routes.php 中的定義拆散成多個檔案,通過 require 的方式引入,但是哪個更好,一目瞭然。

那麼這樣路由分開多個檔案後豈不是增加調用次數,會不會影響效能?答案是不必擔心。通過 Laravel 的命令:

php artisan route:cache

產生路由快取檔案後,路由只會讀取快取檔案的路由規則,因此不會影響效能,這樣做讓開發更高效和規範。

好了,以上就是Laravel路由檔案(routes.php)最佳分割方式的全部內容,希望對大家學習Laravel有所協助。也希望大家多多支援topic.alibabacloud.com。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.