官术网_书友最值得收藏!

Updating a single field for a resource with the PATCH method

As we explained in Chapter 2, Working with Class-Based Views and Hyperlinked  APIs in Django, our API can update a single field for an existing resource, and therefore, we provide an implementation for the PATCH method. For example, we can use the PATCH method to update an existing game and set the value for its played field to true. We don't want to use the PUT method because this method is meant to replace an entire game. The PATCH method is meant to apply a delta to an existing game, and therefore, it is the appropriate method to just change the value of the played field.

Now, we will compose and send an HTTP request to update an existing game, specifically, to update the value of the played field and set it to true because we just want to update a single field, we will use the PATCH method instead of PUT. Make sure you replace 2 with the id or primary key of an existing game in your configuration:

http PATCH :8000/games/2/ played=true

The following is the equivalent curl command:

curl -iX PATCH -H "Content-Type: application/json" -d '{"played":"true"}' :8000/games/2/

The preceding command will compose and send a PATCH HTTP request with the specified JSON key-value pair. The request has a number after /games/, and therefore, it will match '^games/(?P<pk>[0-9]+)/$' and run the patch method for the views.GameDetail class-based view. Remember that the method is defined in the RetrieveUpdateDestroyAPIView superclass and it ends up calling the update method defined in mixins.UpdateModelMixin. If the Game instances with the updated value for the played field are valid and were successfully persisted in the database, the call to the method will return a 200 OK status code and the recently updated Game serialized to JSON in the response body. The following lines show a sample response:

HTTP/1.0 200 OK
Allow: GET, PUT, PATCH, DELETE, HEAD, OPTIONS
Content-Type: application/json
Date: Sun, 26 Jun 2016 04:09:22 GMT
Server: WSGIServer/0.2 CPython/3.5.1
Vary: Accept, Cookie
X-Frame-Options: SAMEORIGIN
{
 "game_category": "3D RPG", 
 "name": "PvZ Garden Warfare 4", 
 "played": true, 
 "release_date": "2016-06-21T03:02:00.776594Z", 
 "url": "http://localhost:8000/games/2/"
}
主站蜘蛛池模板: 嘉善县| 永平县| 皋兰县| 浠水县| 咸丰县| 土默特左旗| 揭西县| 丹江口市| 司法| 遂溪县| 茌平县| 城步| 五常市| 丹棱县| 邮箱| 东方市| 皮山县| 张家界市| 渭源县| 大方县| 都匀市| 龙州县| 册亨县| 铁岭市| 塘沽区| 和平区| 东安县| 辽宁省| 博白县| 上蔡县| 佛学| 凤翔县| 河曲县| 新邵县| 馆陶县| 县级市| 乌苏市| 象山县| 凤山市| 洪湖市| 普安县|