三分鐘用 Laravel 實現 API 開發

loveinalife發表於2018-09-18

開發環境laravel5.5

laravel5.5已經引入了獨立的無狀態路由檔案api.php作為api的開發,我們可以將介面需要的路由定義在該檔案中

file

定義路由並測試

file
file
注意:(這裡我們要注意5.5版,api.php檔案中的路由已經自動為我們加上了“api”的字首);

若要路由中加版本號可更改此字首如下圖:

file
file

引入自定義中介軟體

1.自定義中介軟體檔案
file
2.註冊中介軟體檔案
file
3.路由中使用
file
測試中介軟體的生效
file
自此簡單的用laravel5.5實現api開發完結。
下面優質的api開發帖子可供閱讀參考:
https://learnku.com/articles/13797/restful-api-best-practice
https://learnku.com/articles/13631/resetful-api-design-specification
https://learnku.com/docs/dingo-api/2.0.0/recommended-reading/1485
完結。
不足之處,敬請指正。
附:( https://github.com/yimengyisheng/laravel_api_share ) 基於laravel5.5構建拿來即用的RESTful API服務

code one

相關文章