- Building Microservices with Go
- Nic Jackson
- 63字
- 2021-07-15 17:28:08
PUT
The PUT method is used to update a mutable resource and must always include the resource locator. The PUT method calls are also idempotent in that multiple requests will not mutate the resource to a different state than the first call.
Request:
PUT /v1/cats HTTP/1.1
Content-Type: application/json
Content-Length: xxxx
{"name": "Thomas", "weight": 7 }
Response:
HTTP/1.1 201 Created
Content-Type: application/json
Content-Length: 0
推薦閱讀
- Learning Python Web Penetration Testing
- 自然語言處理實戰:預訓練模型應用及其產品化
- Android Jetpack開發:原理解析與應用實戰
- Effective C#:改善C#代碼的50個有效方法(原書第3版)
- Vue.js 2 and Bootstrap 4 Web Development
- Building a RESTful Web Service with Spring
- Learning SAP Analytics Cloud
- PHP網絡編程學習筆記
- Amazon S3 Cookbook
- Mastering ROS for Robotics Programming
- Mastering AWS Security
- 從0到1:HTML5 Canvas動畫開發
- Mastering Concurrency Programming with Java 9(Second Edition)
- 超簡單:用Python讓Excel飛起來(實戰150例)
- ABAQUS6.14中文版有限元分析與實例詳解