POST 创建新资源http://example.com/api/orders PUT 更新特定资源http://example.com/api/orders/123 DELETE 删除特定资源http://example.com/api/orders/123 对应到RESTful API,得到标准的API接口: GET 检索资源列表http://[hostname]/todo/api/v1.0/items GET 检索某个特定资源http://[hostname]/todo/api...