我有以下几行代码重复,不仅在Controller的许多方法中,而且在多个Controller中。
$Categories = \Cache::rememberForever('Categories', function() {
return \App\Models\Skill\Category_Model::all();
});
我是否有任何有用的方法可以使用它,以便可以删除重复的代码?
答案 0 :(得分:4)
使用存储库访问Category_Model
模型:
//REPOSITORY CLASS
class CategoryRepository
{
public function getAll()
{
return \Cache::rememberForever('Categories', function() {
return \App\Models\Skill\Category_Model::all();
});
}
}
在需要获取类别的控制器中,从控制器的构造函数注入存储库,并从方法访问存储库:
//INJECT THE REPOSITORY IN YOU CONTROLLER'S CONSTRUCTOR
public function __construct( CategoryRepository $catRepo )
{
$this->catRepo = $catRepo;
}
public function index()
{
//get the categories from the repository
$categories = $this->catRepo->getAll();
}
这会使您的代码 DRY ,因为您只需拨打$this->catRepo->getAll();
即可获取所有类别