基于 HTTP 方法的路由示例

不同 http 方法的相同 URl 行为不同。下面是描述相同的表格。

HTTP VERB 网址 描述
GET /API/students 返回所有学生
GET /APIstudents/5 返回 Student Id = 5 的详细信息
POST /APIstudents 添加一名新学生
PUT /APIstudents/5 更新 Id = 5 的学生
DELETE /APIstudents/5 删除 Id = 5 的学生