html,csrf令牌标签不起作用。显示在页面中

时间:2015-02-22 15:27:27

标签: html django django-csrf

我正在使用django和一个静态html文件。

我在html中添加{% csrf_token %}标记。

<form data-toggle="validator" role="form" action="/form/" method="post">

            {% csrf_token %}
            <!some inputs>
</form>

但是当我刷新页面时,我的表单上方有一个文字{% csrf_token %} 为什么html标签不起作用?

1 个答案:

答案 0 :(得分:1)

另一种选择是使用JavaScript获取csrf令牌:

https://docs.djangoproject.com/en/dev/ref/csrf/#ajax