国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Laravel中你為什么可以直接在 web.php 中 直接使用 Route ? 服務提供者的介紹

desdik / 1041人閱讀

摘要:這篇文章來自一個社區問題的思考中為什么可以直接使用原理很簡單首先你注意一下里面

這篇文章來自一個 sf 社區問題的思考

laravel web.php 中 Route 為什么可以直接使用


原理很簡單

1 . 首先, 你注意一下 /config/app.php 里面

/*
    |--------------------------------------------------------------------------
    | Class Aliases
    |--------------------------------------------------------------------------
    |
    | This array of class aliases will be registered when this application
    | is started. However, feel free to register as many as you wish as
    | the aliases are "lazy" loaded so they don"t hinder performance.
    |
    */
    "aliases" => [
        "Route" => IlluminateSupportFacadesRoute::class,
    ];

2 . 因為有 Facades, 所以我們直接去看 IlluminateSupportFacadesRoute::class 這個類返回的內容

* @method static IlluminateRoutingRoute get(string $uri, Closure|array|string $action)

/**
 * Get the registered name of the component.
 *
 * @return string
 */
protected static function getFacadeAccessor()
{
    return "router";
}

3 . 那就簡單了, 直接去找注冊為 router 的組件

發現是在 Illuminate/Routing/RoutingServiceProvider.php

/**
 * Register the router instance.
 *
 * @return void
 */
protected function registerRouter()
{
    $this->app->singleton("router", function ($app) {
        return new Router($app["events"], $app);
    });
}

4 . new Router() 看到了沒, 很顯然就會返回 Illuminate/Routing/Router.php 實例; 是不是發現了

   /**
     * Register a new GET route with the router.
     *
     * @param  string  $uri
     * @param  Closure|array|string|null  $action
     * @return IlluminateRoutingRoute
     */
    public function get($uri, $action = null)
    {
        return $this->addRoute(["GET", "HEAD"], $uri, $action);
    }

(づ ̄3 ̄)づ╭?~ 宣我 !! 么么
問答時間

1) . 我確認了 "router" 是在
Illuminate/Routing/RoutingServiceProvider.php 里面的 ,

但是為什么沒有配置在 /config/app.phpproviders 里面呢

答案在這里

Illuminate/Foundation/Application.php

注意 base service providersconfigured providers


    /**
     * Register all of the base service providers.
     *
     * @return void
     */
    protected function registerBaseServiceProviders()
    {
        $this->register(new EventServiceProvider($this));

        $this->register(new LogServiceProvider($this));

        $this->register(new RoutingServiceProvider($this));
    }
    
    

   /**
     * Register all of the configured providers.
     *
     * @return void
     */
    public function registerConfiguredProviders()
    {
        (new ProviderRepository($this, new Filesystem, $this->getCachedServicesPath()))
                    ->load($this->config["app.providers"]);
    }

2) . 那我看到在 /config/app.php 注冊了一個看起來像路由相關的 AppProvidersRouteServiceProvider::class, 它是干嘛用的呢?

答案在這里

首先 AppProvidersRouteServiceProvider 繼承自 IlluminateFoundationSupportProvidersRouteServiceProvider; (并且調用了我們上面的 IlluminateSupportFacadesRoute, 可以使用 Route::* )

直接看看 IlluminateFoundationSupportProvidersRouteServiceProvider 你就會明白

    public function boot()
    {
        $this->setRootControllerNamespace();

        if ($this->app->routesAreCached()) {
            $this->loadCachedRoutes();
        } else {
            $this->loadRoutes();

            $this->app->booted(function () {
                $this->app["router"]->getRoutes()->refreshNameLookups();
                $this->app["router"]->getRoutes()->refreshActionLookups();
            });
        }
    }
    
    public function register()
    {
        // 沒有在這里注冊
    }

providers文檔

boot 方法是在所有服務提供者都注冊完成后調用的方法, 所以說 這是啟動后 注冊路由的 provider

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/23332.html

相關文章

  • 【日常填坑】之ajax請求laravelapi接口

    摘要:合適和夠用是最完美的追求。比如從頁面去請求的資源。它允許瀏覽器向跨源服務器,發出請求,從而克服了只能同源使用的限制。定義在中的路由都是無狀態的,并且會應用中間件組。 關于作者 程序開發人員,不拘泥于語言與技術,目前主要從事PHP和前端開發,使用Laravel和VueJs,App端使用Apicloud混合式開發。合適和夠用是最完美的追求。 個人網站:http://www.linganm...

    Arno 評論0 收藏0
  • 【日常填坑】之ajax請求laravelapi接口

    摘要:合適和夠用是最完美的追求。比如從頁面去請求的資源。它允許瀏覽器向跨源服務器,發出請求,從而克服了只能同源使用的限制。定義在中的路由都是無狀態的,并且會應用中間件組。 關于作者 程序開發人員,不拘泥于語言與技術,目前主要從事PHP和前端開發,使用Laravel和VueJs,App端使用Apicloud混合式開發。合適和夠用是最完美的追求。 個人網站:http://www.linganm...

    neu 評論0 收藏0
  • 【日常填坑】之ajax請求laravelapi接口

    摘要:合適和夠用是最完美的追求。比如從頁面去請求的資源。它允許瀏覽器向跨源服務器,發出請求,從而克服了只能同源使用的限制。定義在中的路由都是無狀態的,并且會應用中間件組。 關于作者 程序開發人員,不拘泥于語言與技術,目前主要從事PHP和前端開發,使用Laravel和VueJs,App端使用Apicloud混合式開發。合適和夠用是最完美的追求。 個人網站:http://www.linganm...

    fuyi501 評論0 收藏0
  • Repository模式下使用laravel

    摘要:倉庫地址文檔地址清晰的目錄結構只負責定義模型如模型關聯和等負責處理這個表相關的所有業務邏輯不只是注入相關的任何都可以注入代碼定位迅速只負責處理簡單的邏輯獲取轉發數據它應該是簡潔干凈的所有的驗證類所有的模型用戶相關的所有模型目錄結構應與一致 laravel-repository 倉庫地址Github Repository文檔地址 清晰的目錄結構 Models只負責定義模型(如:模型關聯,...

    netScorpion 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<