laravel 契约的使用

英文文档
laravel-china
建议还是看看英文原文比较好

  • 契约的使用这方面很少文章介绍,很多文章都是直接翻译了文档,并没有提到实际中的使用。

个人理解的契约就是接口,那么他的使用其实是应该类似于写观察者模式时候一样,方法中的参数使用的是接口,但实际传参的时候,用的是实例化接口的类。

在服务容器那一个章节,有这个一个介绍

先写一个接口和两个实例化的类

$this->app->bind(
    'App\Contracts\EventPusher',
    'App\Services\RedisEventPusher'
);

原本想着直接在一个方法中这样写 app()->bind(BookInterface::class,PaperBook::class); 但测试后发现不行,
必须写到 App\Providers 目录下的文件夹中 register方法里才可以

app->bind(BookInterface::class,EBook::class);
    }
}

现在如果在一个方法中直接注入 BookInterface 接口,会默认使用 EBook 这个类

public function index(BookInterface $book)
    {
        dd($book->getCurrentPage());  // EBook current page
    }
  • 另一种实现方式就比较好理解
public function index()
    {
        return $this->getPage(new EBook());
    }

    public function getPage(BookInterface $book)
    {
        return $book->getCurrentPage();
    }

你可能感兴趣的:(laravel 契约的使用)