教你在Laravel5.8中應用Repository設計模式

下面由Laravel教程欄目給大家介紹Laravel 5.8 中如何正確地應用 Repository 設計模式,希望對需要的朋友有所幫助!

創(chuàng)新互聯(lián)專注于淮安區(qū)網(wǎng)站建設服務及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供淮安區(qū)營銷型網(wǎng)站建設,淮安區(qū)網(wǎng)站制作、淮安區(qū)網(wǎng)頁設計、淮安區(qū)網(wǎng)站官網(wǎng)定制、微信小程序開發(fā)服務,打造淮安區(qū)網(wǎng)絡公司原創(chuàng)品牌,更為您提供淮安區(qū)網(wǎng)站排名全網(wǎng)營銷落地服務。

在本文中,我會向你展示如何在 Laravel 中從頭開始實現(xiàn) repository設計模式。我將使用 Laravel 5.8.3 版,但 Laravel 版本不是最重要的。在開始寫代碼之前,你需要了解一些關于 repository設計模式的相關信息。

repository設計模式允許你使用對象,而不需要了解這些對象是如何持久化的。本質(zhì)上,它是數(shù)據(jù)層的抽象。

這意味著你的業(yè)務邏輯不需要了解如何檢索數(shù)據(jù)或數(shù)據(jù)源是什么,業(yè)務邏輯依賴于 repository來檢索正確的數(shù)據(jù)。

關于這個模式,我看到有人將它誤解為 repository被用來創(chuàng)建或更新數(shù)據(jù)。 這不是 repository應該做的,repository不應該創(chuàng)建或更新數(shù)據(jù),僅僅用于檢索數(shù)據(jù)。

理解透了吧?接下來一起寫代碼

既然我們從頭開始,那么我們先創(chuàng)建一個新的 Laravel 項目吧:

composer create-project --prefer-dist laravel/laravel repository

對于本教程,我們將構建一個小型的博客應用。現(xiàn)在我們已經(jīng)創(chuàng)建好了一個新的 Laravel 項目,接下來應該為它創(chuàng)建一個控制器和模型。

php artisan make:controller BlogController

這將在 app/Http/Controllers目錄中創(chuàng)建 BlogController

php artisan make:model Models/Blog -m

提示:
-m選項會創(chuàng)建一個對應的數(shù)據(jù)庫遷移,你可以在 *database/migrations
目錄中找到所生成的遷移。*

現(xiàn)在你應該能在 app/Models目錄中找到剛生成的模型 Blog了吧。這只是一種我喜歡的存放模型的方式。

現(xiàn)在我們有了控制器和模型,是時候看看我們創(chuàng)建的遷移文件了。除了默認的 Laravel 時間戳字段外,我們的博客只需要 標題、內(nèi)容用戶ID字段。

<?php

use Illuminate\\Support\\Facades\\Schema;use Illuminate\\Database\\Schema\\Blueprint;use Illuminate\\Database\\Migrations\\Migration;class CreateBlogsTable extends Migration{
    public function up()
    {
        Schema::create('blogs', function (Blueprint $table) {
            $table->bigIncrements('id');
            $table->string('title');
            $table->text('content');
            $table->integer('user_id');
            $table->timestamps();

            $table->foreign('user_id')
                  ->references('id')
                  ->on('users');
        });
    }

    public function down()
    {
        Schema::dropIfExists('blogs');
    }}

提示:
如果你使用的是 Laravel 5.8 以下的舊版本,請將

$table->bigIncrements('id');

替換為:

$table->increments('id');
設置數(shù)據(jù)庫

我將使用 MySQL數(shù)據(jù)庫作為示例,第一步就是創(chuàng)建一個新的數(shù)據(jù)庫。

mysql -u root -p 
create database laravel_repository;

以上命令將會創(chuàng)建一個叫 laravel_repository的新數(shù)據(jù)庫。接下來我們需要添加數(shù)據(jù)庫信息到 Laravel 根目錄的 .env文件中。

DB_DATABASE=laravel_repositoryDB_USERNAME=rootDB_PASSWORD=secret

當你更新了 .env文件后我們需要清空緩存:

php artisan config:clear
運行遷移

現(xiàn)在我們已經(jīng)設置好了數(shù)據(jù)庫,可以開始運行遷移了:

php artisan migrate

這將會創(chuàng)建 blogs表,包含了我們在遷移中聲明的 title, contentuser_id字段。

實現(xiàn) repository設計模式

一切就緒,我們現(xiàn)在可以開始實現(xiàn) repository設計風格了。我們將會在 app目錄中創(chuàng)建 Repositories目錄。我們將要創(chuàng)建的第二個目錄是 Interfaces目錄,這個目錄位于 Repositories目錄中。

Interfaces文件中我們將創(chuàng)建一個包含兩個方法的 BlogRepositoryInterface接口。

返回所有博客文章的 all方法返回特定用戶所有博客文章的 getByUser方法
<?php

namespace App\\Repositories\\Interfaces;use App\\User;interface BlogRepositoryInterface{
    public function all();

    public function getByUser(User $user);}

我們需要創(chuàng)建的最后一個類是將要實現(xiàn) BlogRepositoryInterfaceBlogRepository,我們會寫一個最簡單的實現(xiàn)方式。

<?php

namespace App\\Repositories;use App\\Models\\Blog;use App\\User;use App\\Repositories\\Interfaces\\BlogRepositoryInterface;class BlogRepository implements BlogRepositoryInterface{
    public function all()
    {
        return Blog::all();
    }

    public function getByUser(User $user)
    {
        return Blog::where('user_id',$user->id)->get();
    }}

你的 Repositories目錄應該像這樣:

app/└── Repositories/
    ├── BlogRepository.php
    └── Interfaces/
        └── BlogRepositoryInterface.php

你現(xiàn)在已經(jīng)成功創(chuàng)建了一個 repository了。但是我們還沒有完成,是時候開始使用我們的 repository了。

在控制器中使用 Repository

要開始使用 BlogRepository,我們首先需要將其注入到 BlogController。由于 Laravel 的依賴注入,我們很容易用另一個來替換它。這就是我們控制器的樣子:

<?php

namespace App\\Http\\Controllers;use App\\Repositories\\Interfaces\\BlogRepositoryInterface;use App\\User;class BlogController extends Controller{
    private $blogRepository;

    public function __construct(BlogRepositoryInterface $blogRepository)
    {
        $this->blogRepository = $blogRepository;
    }

    public function index()
    {
        $blogs = $this->blogRepository->all();

        return view('blog')->withBlogs($blogs);
    }

    public function detail($id)
    {
        $user = User::find($id);
        $blogs = $this->blogRepository->getByUser($user);

        return view('blog')->withBlogs($blogs);
    }}

如你所見,控制器中的代碼很簡短,可讀性非常的高。不需要十行代碼就可以獲取到所需的數(shù)據(jù),多虧了 repository,所有這些邏輯都可以在一行代碼中完成。這對單元測試也很好,因為 repository的方法很容易復用。

repository設計模式也使更改數(shù)據(jù)源變得更加容易。在這個例子中,我們使用 MySQL數(shù)據(jù)庫來檢索我們的博客內(nèi)容。我們使用 Eloquent來完成查詢數(shù)據(jù)庫操作。但是假設我們在某個網(wǎng)站上看到了一個很棒的博客 API,我們想使用這個 API 作為數(shù)據(jù)源,我們所要做的就是重寫 BlogRepository來調(diào)用這個 API 替換 Eloquent

RepositoryServiceProvider

我們將注入 BlogController中的 BlogRepository,而不是注入 BlogController中的 BlogRepositoryInterface,然后讓服務容器決定將使用哪個存儲庫。這將在 AppServiceProviderboot方法中實現(xiàn),但我更喜歡為此創(chuàng)建一個新的 provider來保持整潔。

php artisan make:provider RepositoryServiceProvider

我們?yōu)榇藙?chuàng)建一個新的 provider的原因是,當您的項目開始發(fā)展為大型項目時,結構會變得非常凌亂。設想一下,一個擁有 10 個以上模型的項目,每個模型都有自己的 repository,你的 AppServiceProvider可讀性將會大大降低。

我們的 RepositoryServiceProvider會像下面這樣:

<?php

namespace App\\Providers;use App\\Repositories\\BlogRepository;use App\\Repositories\\Interfaces\\BlogRepositoryInterface;use Illuminate\\Support\\ServiceProvider;class RepositoryServiceProvider extends ServiceProvider{
    public function register()
    {
        $this->app->bind(
            BlogRepositoryInterface::class, 
            BlogRepository::class
        );
    }}

留意用另一個 repository替代 BlogRepository是多么容易!

不要忘記添加 RepositoryServiceProviderconfig/app.php文件的 providers列表中。完成了這些后我們需要清空緩存:

'providers' => [
    //測試¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥
  \\App\\Providers\\RepositoryServiceProvider::class],
php artisan config:clear
就是這樣

現(xiàn)在你已經(jīng)成功實現(xiàn)了 repository設計模式,不是很難吧?

你可以選擇增加一些路由和視圖來拓展代碼,但本文將在這里結束,因為本文主要是介紹 repository設計模式的。

如果你喜歡這篇文章,或者它幫助你實現(xiàn)了 repository設計模式,請確保你也查看了我的其他文章。如果你有任何反饋、疑問,或希望我撰寫另一個有關 Laravel 的主題,請隨時發(fā)表評論。

網(wǎng)站題目:教你在Laravel5.8中應用Repository設計模式
文章分享:http://www.muchs.cn/article26/cjhgcg.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站收錄、電子商務、移動網(wǎng)站建設、響應式網(wǎng)站、網(wǎng)站制作、Google

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)

手機網(wǎng)站建設