您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
这期内容当中小编将会给大家带来有关使用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进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。