rest-api設計風格

delphi中间件發表於2024-05-31

rest-api設計風格

規則:

1)只能使用http-POST方法;

2)所有請求引數必須是json格式;

單表CRUD舉例:

danwei(資源):計量單位

1)查詢

POST http://127.0.0.1:1234/danwei/select

body:查詢where條件

2)新增

POST http://127.0.0.1:1234/danwei/insert

body:要新增的資料

3)修改

POST http://127.0.0.1:1234/danwei/update

body:要修改的資料

4)刪除

POST http://127.0.0.1:1234/danwei/delete

body:要刪除的資料

多表CRUD舉例:

1)查詢

POST http://127.0.0.1:1234/tables/select

body:查詢where條件

2)新增

POST http://127.0.0.1:1234/tables/insert

body:要新增的資料

相關文章