首页 > 编程 > PHP > 正文

Laravel Repository 模式

2020-03-22 20:25:04
字体:
来源:转载
供稿:网友
  • Repository 模式

    为了保持代码的整洁性和可读性,使用Repository Pattern是非常有用的。事实上,我们也不必仅仅为了使用这个特别的设计模式去使用Laravel,然而在下面的场景下,我们将使用OOP框架Laravel去展示如何使用repositories使我们的Controller层不再那么啰嗦、更加解耦和易读。下面让我们更深入的研究一下。

    不使用repositories

    其实使用Repositories并不是必要的,在你的应用中你完全可以不使用这个设计模式的前提下完成绝大多数的事情,然而随着时间的推移你可能把自己陷入一个死角,比如不选择使用Repositories会使你的应用测试很不容易,(swapping out implementations)具体的实现将会变的很复杂,下面我们看一个例子。
    HousesController.php

    <?php    html' target='_blank'>class HousesController extends BaseController {        public function index()        {            $houses = House::all();            return View::make('houses.index',compact('houses'));        }                    public function create()        {            return View::make('houses.create');        }        public function show($id)        {            $house = House::find($id);            return View::make('houses.show',compact('house'));        }    }

      

    这是一个很典型的一段代码使用Eloquent数据库交互,这段代码工作的很正常,但是controller层对于Eloquent而言将是紧耦合的。在此我们可以注入一个repository创建一个解耦类型的代码版本,这个解耦的版本代码可以使后续程序的具体实现更加简单。

    使用repositories

    其实完成整个repository模式需要相当多的步骤,但是一旦你完成几次就会自然而然变成了一种习惯了,下面我们将详细介绍每一步。

    1.创建Repository文件夹

    首先我们需要在app文件夹创建自己Repository文件夹repositories,然后文件夹的每一个文件都要设置相应的命名空间。

    2: 创建相应的Interface

    第二步创建对应的接口,其决定着我们的repository类必须要实现的相关方法,如下例所示,在此再次强调的是命名空间一定要记得加上。
    HouseRepositoryInterface.php

    <?php namespace AppRepositories;interface HouseRepositoryInterface {    public function selectAll();        public function find($id);}

      

    3:创建对应的Repository

    现在我们可以创建我们repository类 来给我们干活了,在这个类文件中我们可以把我们的绝大多数的数据库查询都放进去,不论多么复杂。如下面的例子
    DbHouseRepository.php

    <?php namespace AppRepositories;use House;class DbHouseRepository implements HouseRepositoryInterface {        public function selectAll()    {        return House::all();    }    public function find($id)    {        return House::find($id);    }}

      

    4:创建后端服务提供

    首先你需要理解所谓服务提供,请参考手册服务提供者
    BackendServiceProvider.php

    <?php namespace AppRepositories;use IlluminateSupportSeriveProvider;class BackSerivePrivider extends ServiceProvider {    public function register()    {        $this->app->bind('AppRepositoriesHouseRepositoryInterface', 'AppRepositoriesDbHouseRepository');    }}

      

    当然你也可以新建一个文件夹主要放我们的provider相关文件。
    上面一段代码主要说的是,当你在controller层使用类型提示HouseRepositoryInterface,我们知道你将会使用DbHouseRepository.

    5:更新你的Providers Array

    其实在上面的代码中,我们已经实现了一个依赖注入,但如果我们要使用在此我们是需要手动去写的,为了更为方面,我们需要增加这个providers到app/config/app.php 中的providers数组里面,只需要在最后加上AppRepositoriesBackendServiceProvider::class,

    6:最后使用依赖注入更新你的controller

    当我们完成上面的那些内容之后,我们在Controller只需要简单的调用方法代替之前的复杂的数据库调用,如下面内容:
    HousesController.php

    <?php use AppepositoriesHouseRepositoryInterface;class HousesController extends BaseController {    public function __construct(HouseRepositoryInterface $house)    {        $this->house = $house;    }    public function index()    {        $houses = $this->house->selectAll();        return View::make('houses.index', compact('houses'));            }    public function create()    {        return View::make('houses.create');    }    public function show($id)    {        $house = $this->house->find($id);                return View::make('houses.show', compact('house'));    }}

      这样 整个模式的转换就完成了

    PHP编程

    郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。

  • 发表评论 共有条评论
    用户名: 密码:
    验证码: 匿名发表