Laravel 5의 다른 컨트롤러에서 컨트롤러 메서드에 액세스하는 방법
Laravel에서 여러 컨트롤러로 작업할 때 하나의 컨트롤러에서 다른 컨트롤러의 메서드를 사용합니다. 이를 달성하기 위한 다양한 접근 방식은 다음과 같습니다.
App::call() 메서드 사용
app() 도우미 함수를 사용하여 메서드에 액세스할 수 있습니다.
<code class="php">app('App\Http\Controllers\PrintReportController')->getPrintReport();</code>
그러나 이 접근 방식은 조직적 문제로 인해 권장되지 않습니다.
컨트롤러 확장
다른 컨트롤러를 확장하여 메서드를 상속할 수 있습니다.
<code class="php">class SubmitPerformanceController extends PrintReportController { // .... }</code>
이는 PrintReportController의 모든 메소드를 상속하지만 이는 바람직하지 않을 수 있습니다.
특성 사용
선호되는 접근 방식은 원하는 로직이 있는 특성:
<code class="php">trait PrintReport { public function getPrintReport() { // ..... } }</code>
그런 다음 관련 컨트롤러에 특성을 포함합니다.
<code class="php">class PrintReportController extends Controller { use PrintReport; } class SubmitPerformanceController extends Controller { use PrintReport; }</code>
이렇게 하면 두 컨트롤러 모두 $this->를 통해 getPrintReport() 메서드에 액세스할 수 있습니다. ;getPrintReport().
위 내용은 Laravel 5의 다른 컨트롤러에서 컨트롤러 메소드에 액세스하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!