laravel5建立一個facade,可以將某個service註冊個門面,這樣,使用的時候就不需要麻煩地use 了。文章用一個例子說明怎麼建立service provider和 facade。
目標
我希望我建立一個AjaxResponse的facade,這樣能直接在controller中這樣使用:
class MechanicController extends Controller { public function getIndex() { \AjaxResponse::success(); }}
它的作用就是規範返回的格式為
{ code: "0" result: { }}
步驟
建立Service類
在app/Services檔案夾中建立類
$code, 'message' => $message, ]; if ($data !== null) { $out['result'] = $data; } return response()->json($out); } public function success($data = null) { $code = ResultCode::Success; return $this->ajaxResponse(0, '', $data); } public function fail($message, $extra = []) { return $this->ajaxResponse(1, $message, $extra); }}
這個AjaxResponse是具體的實作類別,下面我們要為這個類做一個provider
建立provider
在app/Providers檔案夾中建立類
app->singleton('AjaxResponseService', function () { return new \App\Services\AjaxResponse(); }); }}
這裡我們在register的時候定義了這個Service名字為AjaxResponseService
下面我們再定義一個門臉facade
建立facade
在app/Facades檔案夾中建立類
修改設定檔
好了,下面我們只需要到app.php中掛載上這兩個東東就可以了
[ ... 'App\Providers\RouteServiceProvider', 'App\Providers\AjaxResponseServiceProvider', ], 'aliases' => [ ... 'Validator' => 'Illuminate\Support\Facades\Validator', 'View' => 'Illuminate\Support\Facades\View', 'AjaxResponse' => 'App\Facades\AjaxResponseFacade', ],];
總結 laravel5中使用facade還是較為容易的,基本和4沒啥區別。