検索

ホームページ  >  に質問  >  本文

Laravel フレームワークはアプリケーションをフロントエンドとバックエンドにどのように分割しますか?ルーティング グループを使用していますか?

AilonAilon2702日前1490

全員に返信(1)返信します

  • PHP中文网

    PHP中文网2017-08-26 16:25:35

    app/providers/RouteServiceProvider.PHP ファイルを見つけます


    1

    2

    3

    4

    5

    6

    7

    8

    9

    10

    11

    12

    13

    14

    15

    16

    17

    18

    19

    20

    21

    22

    23

    24

    25

    26

    27

    28

    29

    30

    31

    32

    33

    34

    35

    36

    37

    38

    39

    40

    41

    42

    43

    44

    45

    46

    47

    48

    49

    50

    51

    52

    53

    54

    55

    56

    57

    58

    59

    60

    61

    62

    63

    64

    65

    66

    67

    68

    69

    70

    71

    72

    73

    74

    75

    76

    77

    78

    79

    80

    81

    <?php

    namespace App\Providers;

    use Illuminate\Routing\Router;

    use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;

    class RouteServiceProvider extends ServiceProvider

    {

        /**

         * This namespace is applied to the controller routes in your routes file.

         *

         * In addition, it is set as the URL generator's root namespace.

         *

         * @var string

         */

        protected $namespace 'App\Http\Controllers';

        protected $backendNamespace;

        protected $frontendNamespace;

        protected $apiNamespace;

        protected $currentDomain;

        /**

         * Define your route model bindings, pattern filters, etc.

         *

         * @param  \Illuminate\Routing\Router $router

         * @return void

        */

        public function boot(Router $router)

        {

            $this->backendNamespace = 'App\Http\Controllers\Backend';

            $this->frontendNamespace = 'App\Http\Controllers\Frontend';

            $this->apiNamespace = 'App\Http\Controllers\API';

            //$this->currentDomain = $this->app->request->server->get('HTTP_HOST');

            $this->currentDomain = isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : "";

            parent::boot($router);

        }

        /**

         * Define the routes for the application.

         *

         * @param  \Illuminate\Routing\Router $router

         * @return void

         */

        public function map(Router $router)

        {

            //$router->group(['namespace' => $this->namespace], function ($router) {

                //require app_path('Http/routes.php');

            //});

            $backendUrl = config('route.backend_url');

            $frontendUrl = config('route.frontend_url');

            $apiUrl = config('route.api_url');

            switch ($this->currentDomain){

                case $apiUrl:

                    // API路由

                    $router->group([

                        'domain' => $apiUrl,

                        'namespace' => $this->apiNamespace],

                        function ($router) {

                            require app_path('Http/routes-api.php');

                        }

                    );

                    break;

                case $backendUrl:

                    // 后端路由

                    $router->group([

                        'domain' => $backendUrl,

                        'namespace' => $this->backendNamespace],

                        function ($router) {

                            require app_path('Http/routes-backend.php');

                        }

                    );

                    break;

                default:

                    // 前端路由

                    $router->group([

                        'domain' => $frontendUrl,

                        'namespace' => $this->frontendNamespace],

                        function ($router){

                            require app_path('Http/routes-frontend.php');

                        }

                    );

                    break;

            }

        }

    }

    完了後、ルートも作成できますが、上記の名前と同じである必要があります

    ルート (のもちろんルートをカスタマイズすることもできます) 例:

    1

    2

    3

    4

    5

    6

    7

    8

    Route::group(['middleware' => ['web']], function () {   

        Route::controller('/test''TestController');  

        // 重置  

        Route::get('user/password/reset/{token?}', [

            'as' => 'user.password.reset@token'

            'uses' => 'User\PasswordController@getReset'  

        ]);  

    ]);


    返事
    0
  • キャンセル返事