Untitled
RESTful风格API
初识RESTful
RESTful,REpresentational State Transfer,表述性状态转化,是一种软件架构风格。
风格概述
URL定位资源
HTTP请求方式描述操作
GET查询,POST新增,PUT修改,DELETE删除
| url | 请求方式 | 含义 |
|---|---|---|
http://localhost:8080/users/1 |
GET | 查询id为1的用户 |
http://localhost:8080/users/1 |
DELETE | 删除id为1的用户 |
http://localhost:8080/users |
POST | 新增用户 |
http://localhost:8080/users |
PUT | 修改用户 |
All articles on this blog are licensed under CC BY-NC-SA 4.0 unless otherwise stated.
