member-doc/request.md
zhouyangyang a4b70328c6 提交
2022-06-14 19:36:15 +08:00

21 lines
572 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## 请求格式
1. 除文件上传之外其他api请求一律使用**Content-Type: application/json** 提交。
2. 使用path可变变量替换实际请求参数提高api接口安全性和可读性。比如tenant/member/member/{id}
## 路由风格
1. 建议采用RestfulApi定义路由风格。
2. **路由path必须使用小驼峰命名**
### 路由示例
1. 【正确✔】 {host}}/member/order/orders
2. 【错误❌】{host}}/member/order/get_order_list
### 路由定义
1. 推荐在config/routes 定义 方便集中管理
2. 通过路由注解定义