基於 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 的學生