- Building Microservices with Go
- Nic Jackson
- 66字
- 2021-07-15 17:28:08
DELETE
The DELETE verb is used when we want to remove a resource, generally we would pass the ID of the resource as part of the path rather than in the body of the request. This way, we have a consistent method for updating, deleting, and retrieving a document.
Request:
DELETE /v1/cats/12343 HTTP/1.1
Content-Type: application/json
Content-Length: 0
Response:
HTTP/1.1 204 No Body
Content-Type: application/json
Content-Length: 0
推薦閱讀
- AngularJS入門與進階
- Learn TypeScript 3 by Building Web Applications
- JavaScript前端開發模塊化教程
- 測試驅動開發:入門、實戰與進階
- 軟件界面交互設計基礎
- Learning ArcGIS Pro 2
- Full-Stack Vue.js 2 and Laravel 5
- Hands-On Microservices with Kotlin
- Android 應用案例開發大全(第3版)
- 基于Swift語言的iOS App 商業實戰教程
- FLL+WRO樂高機器人競賽教程:機械、巡線與PID
- Learning Raspbian
- Learning AngularJS for .NET Developers
- Statistical Application Development with R and Python(Second Edition)
- Python數據可視化之美:專業圖表繪制指南(全彩)