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