1. 程式人生 > >python [解決方法] Forbidden (403) CSRF verification failed. Request aborted.

python [解決方法] Forbidden (403) CSRF verification failed. Request aborted.

在學習Python的Django框架的過程中遇到了如下問題:

Forbidden (403)

CSRF verification failed. Request aborted.

問題是因為在post提交的過程中為了防止CSRF攻擊,需要設定一個Token來驗證。

解決方法是:
在表單中加入

{% csrf_token %}

例如:

<form action="" method="post" accept-charset="utf-8">
{% csrf_token %}
//你要輸入的內容
</form>