关于 l5-repository

不知道大家有没有用l5-repository的。我之前用symfony,所以习惯了又repository这一层,看网上有人推荐l5-repository,但是我在用过的过程发现,repository只能在controller中依赖注入使用?
class PostsController extends BaseController {
protected $repository;
public function construct(PostRepository $repository){
$this->repository = $repository;
}
}
不能直接new吗,而且如果一个controller中用到两个repository怎么办呢?
在直接new的时候报如下错误:
ErrorException in BaseRepository.php line 87:
Argument 1 passed to Prettus\Repository\Eloquent\BaseRepository::
construct() must be an instance of Illuminate\Container\Container, none given, called in laravel52/app/Http/Controllers/HomeController.php on line 38 and defined
望用过的高手解答一下。

superwen
《L05 电商实战》
从零开发一个电商项目,功能包括电商后台、商品 & SKU 管理、购物车、订单管理、支付宝支付、微信支付、订单退款流程、优惠券等
《L04 微信小程序从零到发布》
从小程序个人账户申请开始,带你一步步进行开发一个微信小程序,直到提交微信控制台上线发布。
讨论数量: 2
wonbin

可以直接new了 ,controller 是依赖注入的方式产生的对象

4年前 评论
class PostsController extends BaseController {
         protected $repository_a;
         protected $repository_b;

         public function construct(ARepository $repository_a,  BRepository $repository_b, ) {
              $this->repository_a = $repository_a;
              $this->repository_b = $repository_b;
         }
}
3年前 评论

讨论应以学习和精进为目的。请勿发布不友善或者负能量的内容,与人为善,比聪明更重要!