站長資訊網(wǎng)
        最全最豐富的資訊網(wǎng)站

        Laravel的依賴注入實現(xiàn)原理是什么

        在Laravel中,依賴注入的實現(xiàn)原理是利用類方法反射,取得參數(shù)類型,然后利用容器構(gòu)造好實例,再使用回調(diào)函數(shù)調(diào)起;注入對象構(gòu)造函數(shù)不能有參數(shù),否則會報錯,依賴注入必須要由Router類調(diào)起,否則直接用new方式是無法實現(xiàn)注入的。

        Laravel的依賴注入實現(xiàn)原理是什么

        本文操作環(huán)境:Windows10系統(tǒng)、Laravel6版、Dell G3電腦。

        Laravel的依賴注入實現(xiàn)原理是什么

        laravel容器包含控制反轉(zhuǎn)和依賴注入,使用起來就是,先把對象bind好,需要時可以直接使用make來取就好。

        具體分析參照:http://laravelacademy.org/post/769.html

        通常我們的調(diào)用如下。

        $config = $container->make('config'); $connection = new Connection($this->config);

        比較好理解,這樣的好處就是不用直接 new 一個實例了,方法傳值沒啥改變,還可以多處共享此實例。

        但這跟依賴注入有什么關(guān)系,真正的依賴注入是不需給方法傳遞任何參數(shù)值,只需要指明方法參數(shù)類型,代碼自動查找關(guān)系依賴自動注入。

        這個特性在 laravel 的 Controller、Job 等處可以體現(xiàn),如下:

        class TestController extends Controller {     public function anyConsole(Request $request, Auth $input)     {         //todo     } }

        我們來看下他是怎么實現(xiàn)自動依賴注入的:

        由 index.PHP 調(diào)用 Kernel ,經(jīng)過多層 Kernel 管道調(diào)用,再到 Router ,經(jīng)過多層中間件管道調(diào)用。最終定位到

        Illuminate/Routing/Route.php 第124行。

        public function run(Request $request) {     $this->container = $this->container ?: new Container;     try {         if (! is_string($this->action['uses'])) {             return $this->runCallable($request);         }         if ($this->customDispatcherIsBound()) {             return $this->runWithCustomDispatcher($request);         }         return $this->runController($request);     } catch (HttpResponseException $e) {         return $e->getResponse();     } }

        判斷 $this->action[‘uses’](格式行如:AppHttpControllerDatacenterRealTimeController@anyConsole)是否字符串, $this->customDispatcherIsBound判斷是否綁定了用戶自定義路由。然后跳轉(zhuǎn)到 $this->runController($request)。

        protected function runController(Request $request) {     list($class, $method) = explode('@', $this->action['uses']);     $parameters = $this->resolveClassMethodDependencies(         $this->parametersWithoutNulls(), $class, $method     );     if (! method_exists($instance = $this->container->make($class), $method)) {         throw new NotFoundHttpException;     }     return call_user_func_array([$instance, $method], $parameters); }

        $this->resolveClassMethodDependencies 這個方法一看名字就知道是我們要找的方法。$this->parametersWithoutNulls()是過濾空字符,$class、$method分別行如:AppHttpControllerDatacenterRealTimeController 與 anyConsole。

        protected function resolveClassMethodDependencies(array $parameters, $instance, $method) {     if (! method_exists($instance, $method)) {         return $parameters;     }     return $this->resolveMethodDependencies(         $parameters, new ReflectionMethod($instance, $method)     ); }

        new ReflectionMethod($instance, $method) 是拿到類方法的反射對象,參見文檔:http://www.php.net/manual/zh/class.reflectionmethod.php

        下面跳轉(zhuǎn)到Illuminate/Routing/RouteDependencyResolverTrait.php 第54行。

        public function resolveMethodDependencies(array $parameters, ReflectionFunctionAbstract $reflector) {     $originalParameters = $parameters;     foreach ($reflector->getParameters() as $key => $parameter) {         $instance = $this->transformDependency(             $parameter, $parameters, $originalParameters         );         if (! is_null($instance)) {             $this->spliceIntoParameters($parameters, $key, $instance);         }     }     return $parameters; }

        通過反射類方法得到類參數(shù)數(shù)組,然后遍歷傳遞給 $this->transformDependency 方法。如果實例獲取不到則調(diào)用 $this->spliceIntoParameters 清楚該參數(shù)。

        protected function transformDependency(ReflectionParameter $parameter, $parameters, $originalParameters) {     $class = $parameter->getClass();     if ($class && ! $this->alreadyInParameters($class->name, $parameters)) {         return $this->container->make($class->name);     } }

        終于看到了容器的影子,沒錯最終對象還是通過容器的 make 方法取出來的。至此參數(shù)就構(gòu)造好了,然后最終會被 runController 方法的 call_user_func_array 回調(diào)。

        總結(jié):

        依賴注入原理其實就是利用類方法反射,取得參數(shù)類型,然后利用容器構(gòu)造好實例。然后再使用回調(diào)函數(shù)調(diào)起。

        注入對象構(gòu)造函數(shù)不能有參數(shù)。否則會報錯。Missing argument 1

        依賴注入故然好,但它必須要由 Router 類調(diào)起,否則直接用 new方式是無法實現(xiàn)注入的。所以這就為什么只有 Controller 、Job 類才能用這個特性了。

        贊(0)
        分享到: 更多 (0)
        網(wǎng)站地圖   滬ICP備18035694號-2    滬公網(wǎng)安備31011702889846號
        主站蜘蛛池模板: 免费短视频软件精品一区二区| 久久精品天天中文字幕人妻| 久久久久人妻一区精品性色av| 精品人妻伦九区久久AAA片69| 久久99国产精品久久| 日韩精品久久久久久久电影蜜臀 | 欧美精品免费观看二区| 精品免费人成视频app| 亚洲人成国产精品无码| 久久久精品国产亚洲成人满18免费网站| 精品亚洲永久免费精品| 亚洲av永久无码精品古装片| 久久精品aⅴ无码中文字字幕不卡| 久久精品中文字幕第23页| 久久国产成人精品麻豆| 99精品人妻无码专区在线视频区 | 99精品视频在线观看婷| 久久精品国产一区| 久久国产精品成人免费| 成人国产精品999视频| 成人精品视频一区二区三区 | 中文字幕亚洲精品| 四虎永久在线精品884aa下载| 久久精品国产只有精品2020| 久久国产精品99久久久久久老狼| 老司机99精品99| 91精品啪在线观看国产电影| 99热成人精品免费久久| 国产精品永久免费视频| 国产在线精品一区二区不卡麻豆| 久久精品国产精品亚洲艾草网美妙| 久久精品亚洲男人的天堂| 欧美亚洲精品中文字幕乱码免费高清| 欧美精品播放| 少妇精品无码一区二区三区| 国产在线精品无码二区| 国产精品久久精品| 国产高清精品在线| 欧美日韩精品系列一区二区三区| 一级A毛片免费观看久久精品| 久久青青草原精品国产|