依赖注入和依赖注入容器 为了降低代码耦合程度,提高项目的可维护性,Yii采用多许多当下最流行又相对成熟的设计模式,包括了依赖注入(Denpdency Injection, DI)和服务定位器(Service Locator)两种模式.关于依赖注入与服务定位器, Inversion of Control Containers and the Dependency Injection pattern <http://martinfowler.com/articles/injection.html>
<?php namespace common\components; use common\models\Cart; use common\models\User; use Yii; use yii\rest\Controller; use yii\web\Response; class ETRestController extends Controller { /** * api返回的json * @param $status * @param $code * @param $message