- 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 Neo4j
- Getting Started with ResearchKit
- Hands-On Data Structures and Algorithms with JavaScript
- 少年輕松趣編程:用Scratch創作自己的小游戲
- PHP+MySQL網站開發技術項目式教程(第2版)
- INSTANT Django 1.5 Application Development Starter
- 量化金融R語言高級教程
- Oracle從入門到精通(第5版)
- Python機器學習:預測分析核心算法
- Distributed Computing in Java 9
- 程序員必會的40種算法
- Visual Basic語言程序設計上機指導與練習(第3版)
- Google Maps JavaScript API Cookbook
- 程序員的英語
- Practical Linux Security Cookbook