當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Django require_http_methods用法及代碼示例


本文介紹 django.views.decorators.http.require_http_methods 的用法。

聲明

require_http_methods(request_method_list)

裝飾器要求視圖隻接受特定的請求方法。用法:

from django.views.decorators.http import require_http_methods

@require_http_methods(["GET", "POST"])
def my_view(request):
    # I can assume now that only GET or POST requests make it this far
    # ...
    pass

請注意,請求方法應為大寫。

相關用法


注:本文由純淨天空篩選整理自djangoproject.com大神的英文原創作品 django.views.decorators.http.require_http_methods。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。