DRFのviewで使えるHTTPメソッドを見分ける
人が作ったAPIを利用するとき用、SWAGGER/OPEN APIが導入されてない環境用。
from rest_framework.generics import RetrieveUpdateDestroyAPIView #
viewのclassが何を継承してるかで見分けていく
クラス | GET |
POST |
PUT |
PATCH |
DELETE |
---|---|---|---|---|---|
ListAPIView |
✅ | - | - | - | - |
RetrieveAPIView |
✅ | - | - | - | - |
CreateAPIView |
- | ✅ | - | - | - |
DestroyAPIView |
- | - | - | - | ✅ |
UpdateAPIView |
- | - | ✅ | ✅ | - |
ListCreateAPIView |
✅ | ✅ | - | - | - |
RetrieveUpdateAPIView |
✅ | - | ✅ | ✅ | - |
RetrieveDestroyAPIView |
✅ | - | - | - | ✅ |
RetrieveUpdateDestroyAPIView |
✅ | - | ✅ | ✅ | ✅ |
# 例えばこれは、GET、POST両方OK
class HogeHogeList(ListCreateAPIView):
参考
Documentに書かれてるが早見表的ものが欲しかった
備考
viewが関数とデコレーターで実装されてる場合は、この辺は読んでて全然困らない
@action(methods=['POST'],detail=True)
def register_token(request, code):
Author And Source
この問題について(DRFのviewで使えるHTTPメソッドを見分ける), 我々は、より多くの情報をここで見つけました https://qiita.com/sakymark/items/6f0237bae7481494a75e著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .