Laravel で PHP のデコレータ パターンを使用するにはどうすればよいですか? LaravelでのPHPデコレータモードの使い方については以下の記事で紹介していますので、ご参考になれば幸いです。
#デザイン パターンはすべての開発者にとって重要です。構築するすべてのプロジェクトでよくある問題を解決します。デコレータ パターンは、単一のオブジェクトに動作を動的に追加できるようにするデザイン パターンです。同じクラス内の他のオブジェクトの動作
class Post extends Model { public function scopePublished($query) { return $query->where('published_at', '<=', 'NOW()'); } }
class PostsController extends Controller { public function index() { $posts = Post::published()->get(); return $posts; } }
class PostsController extends Controller { public function index() { $minutes = 1440; # 1 day $posts = Cache::remember('posts', $minutes, function () { return Post::published()->get(); }); return $posts; } }
repository パターンを使用して投稿の取得方法を分離し、次のような app/Repositories/Posts/PostsRepositoryInterface.php
namespace App\Repositories\Posts; interface PostsRepositoryInterface { public function get(); public function find(int $id); }
<div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">namespace App\Repositories\Posts;
use App\Post;
class PostsRepository implements PostsRepositoryInterface
{
protected $model;
public function __construct(Post $model) {
$this->model = $model;
}
public function get() {
return $this->model->published()->get();
}
public function find(int $id) {
return $this->model->published()->find($id);
}
}</pre><div class="contentsignin">ログイン後にコピー</div></div>
PostsController に戻り、変更を
namespace App\Http\Controllers; use App\Repositories\Posts\PostsRepositoryInterface; use Illuminate\Http\Request; class PostsController extends Controller { public function index(PostsRepositoryInterface $postsRepo) { return $postsRepo->get(); } }
に適用します。コントローラーは正常になり、詳細を十分に知っているので、仕事をやり遂げることができます。
ここでは、Laravel の IOC を利用して、Posts インターフェースの特定のオブジェクトを挿入して投稿を取得します。
必要なのは、インターフェースを使用するときに作成するクラスを Laravel の IOC に指示することだけです。
あなたの
app/Providers/AppServiceProvider.php にバインディング メソッドを追加します <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">namespace App\Providers;
use App\Repositories\Posts\PostsRepositoryInterface;
use App\Repositories\Posts\PostsRepository;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
public function register()
{
$this->app->bind(PostsRepositoryInterface::class,PostsRepository::class);
}
}</pre><div class="contentsignin">ログイン後にコピー</div></div>
Now を注入するたびに
Laravel は # のインスタンスを作成します#PostsRepository を返し、それを返します。
PostsRepository
です。 次の内容を含む
PostsCacheRepository を
に作成しましょう このクラスでは、Caching オブジェクトと PostsRepository オブジェクトを受け入れ、クラス (デコレータ) を使用して、PostsRepository インスタンスにキャッシュ動作を追加します。 同じ例を使用して、HTTP リクエストを何らかのサービスに送信し、失敗した場合にはモデルを返すことができます。このパターンと、動作の追加がいかに簡単であるかがメリットになると思います。
最後に、AppServiceProvider インターフェイス バインディングを変更して、PostsRepository の代わりに PostsCacheRepository インスタンスを作成します。
namespace App\Repositories\Posts; use App\Post; use Illuminate\Cache\CacheManager; class PostsCacheRepository implements PostsRepositoryInterface { protected $repo; protected $cache; const TTL = 1440; # 1 day public function __construct(CacheManager $cache, PostsRepository $repo) { $this->repo = $repo; $this->cache = $cache; } public function get() { return $this->cache->remember('posts', self::TTL, function () { return $this->repo->get(); }); } public function find(int $id) { return $this->cache->remember('posts.'.$id, self::TTL, function () { return $this->repo->find($id); }); } }
ここでファイルをもう一度確認すると、読み取りと保守が非常に簡単であることがわかります。 。同様に、ある時点でキャッシュ層を削除することにした場合もテスト可能です。
AppServiceProviderのバインディングを変更するだけです。追加の変更は必要ありません。
#結論
laravel ビデオ チュートリアル
]以上がLaravelでPHPのデコレータパターンを使用する方法について話しましょうの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。