2016-10-18 14:35发布
我还没有很好的理解laravel容器。我的理解是,容器里放了好多的可供调用的对象。需要时可以直接使用,无需new等。
想问一下,大家都会用到这个特性么?项目中一般怎么去用这个特性呢?是分出个service层,然后把各个service都放到容器里?在controller里调用?还是直接不用呢?
Laravel容器是用来放Service的地方,这些Service就是一个个绑定到容器中的实例对象或闭包或其他的,绑定方式主要三种:bind(),singleton() and instance(),从容器中解析Service方式:make(),这些都在IlluminateContainerContainer,而IlluminateFoundationApplication extends Container。
最多设置5个标签!
Laravel容器是用来放Service的地方,这些Service就是一个个绑定到容器中的实例对象或闭包或其他的,绑定方式主要三种:bind(),singleton() and instance(),从容器中解析Service方式:make(),这些都在IlluminateContainerContainer,而IlluminateFoundationApplication extends Container。
一周热门 更多>