-
為視圖提供
CsrfViewMiddleware
保護的裝飾器。用法:
from django.shortcuts import render from django.views.decorators.csrf import csrf_protect @csrf_protect def my_view(request): c = {} # ... return render(request, "a_template.html", c)
如果您使用的是基於類的視圖,您可以參考裝飾基於類的視圖。
本文介紹 django.views.decorators.csrf.csrf_protect
的用法。
聲明
csrf_protect(view)
相關用法
- Python Django csrf_exempt用法及代碼示例
- Python csv.reader用法及代碼示例
- Python csv.DictWriter用法及代碼示例
- Python csv.Dialect用法及代碼示例
- Python csv.DictReader用法及代碼示例
- Python csv.writer用法及代碼示例
- Python cudf.core.column.string.StringMethods.is_vowel用法及代碼示例
- Python cudf.Series.ceil用法及代碼示例
- Python cudf.core.column.string.StringMethods.endswith用法及代碼示例
- Python cuxfilter.charts.datashader.heatmap用法及代碼示例
- Python cusignal.windows.windows.hann用法及代碼示例
- Python cudf.DataFrame.isin用法及代碼示例
- Python cudf.core.column.string.StringMethods.title用法及代碼示例
- Python codecs.decode()用法及代碼示例
- Python cuml.metrics.pairwise_distances.pairwise_distances用法及代碼示例
- Python collections.somenamedtuple._replace用法及代碼示例
- Python cuxfilter.charts.panel_widgets.int_slider用法及代碼示例
- Python cudf.DataFrame.rmul用法及代碼示例
- Python cudf.Series.max用法及代碼示例
- Python cmp()用法及代碼示例
- Python cudf.DatetimeIndex.dayofweek用法及代碼示例
- Python cudf.DataFrame.apply用法及代碼示例
- Python cucim.skimage.feature.shape_index用法及代碼示例
- Python cuml.neighbors.KNeighborsClassifier用法及代碼示例
- Python cudf.core.column.string.StringMethods.contains用法及代碼示例
注:本文由純淨天空篩選整理自djangoproject.com大神的英文原創作品 django.views.decorators.csrf.csrf_protect。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。