您好,登錄后才能下訂單哦!
這期內容當中小編將會給大家帶來有關使用Yii框架怎么模擬組件調用注入,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
yii 中組件只有在被調用的時候才會被實例化,且在當前請求中之后調用該組件只會使用上一次實例化的實例,不會重新生成該實例。
'components' => array( '組件調用名' => '組件調用命名空間', '組件調用名' => array( 'class' => '組件調用命名空間' ); '組件調用名' => function(){ return new '組件調用命名空間'; } )
一個類似的小組件,可以實現上述功能。方便我們存儲服務功能組件。
<?php namespace app\components\Services; /** * 自定義服務層調用組件 * 支持 的實例模式只有yii模式的string 和 array 模式 * 例子 * services => array( * 'customService' => array( * 'class' => 'app\components\Custom\Custom', * 'name' => '我是勇哥' * ), * ) */ class Services { private $dataObj = array(); private $classes = array(); public function __set($name,$value) { $this->classes[$name] = $value; } public function __get($name) { if(!isset($this->dataObj[$name]) || $this->dataObj[$name] == null) { $classInfo = $this->classes[$name]; $this->dataObj[$name] = is_array($classInfo) ? (new $classInfo['class']) : (new $classInfo); if(is_array($classInfo)) foreach($classInfo as $a=>$b) if($a != 'class') $this->dataObj[$name]->$a = $b; } return $this->dataObj[$name]; } }
web.php
'components'=>array( 'services' => array( 'class' => 'app\components\Services\Services', //自定義服務 custom1 'custom1Service' => array( 'class' => 'app\services\Custom1\Custom1', //需要注入的屬性值 'name' => '我是勇哥', 'age' => 22 ), //自定義服務 custom2 'custom2Service' => array( 'class' => 'app\services\Custom2\Custom2', //需要注入的屬性值 'name' => '我是勇哥', 'age' => 22 ), ) )
控制層調用
<?php namespace app\controllers\home; use Yii; use yii\web\Controller; class IndexController extends Controller { public function actionIndex() { echo Yii::$app->services->custom1Service->name; } }
上述就是小編為大家分享的使用Yii框架怎么模擬組件調用注入了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。