laravel框架service模式

我们`laravel`框架很优雅,那么为了代码的优雅,代码的可重用性,controller的瘦身,我们可以用`service`来实现

首先我们创建`service`

>app/Services/Testservice.php
testService = $service;
}
public function index(TestService $service){
echo $service->index();
echo $this->testService->index();
$testService = new TestService();
echo $testService->index();
}
}

这样我们就可以在多个`controller`中调用同一个`service`来达到解耦的目的。

    A+
发布日期:2020年11月10日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: