Django {% csrf_token %} 或 @csrf_protect

发布于 2024-12-15 02:53:39 字数 306 浏览 1 评论 0原文

我很好奇:我知道 Django 中有两种 csrf 保护方式:模板中的 {% csrf_token %} 和视图中的 @csrf_protect

那么,问题是:它们可以互换吗?我的意思是我只能使用 @csrf_protect 我的视图中没有 {% csrf_token %} 标签在我的模板中,效果会是相同的吗?

我这么问是因为我在最近的 Django 项目中使用了 mako 并且没有这样的标签 {% csrf_token %}...

I am curious: I know there are 2 ways of csrf protection in Django: {% csrf_token %} in templates and @csrf_protect in views.

So, question is: are they interchangeable? I mean I can use for example only @csrf_protect i my views without {% csrf_token %} tag in my templates and effect will be the same?

I'm asking that because I use mako in recent Django project and there is no such tag as {% csrf_token %}...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梅窗月明清似水 2024-12-22 02:53:39

你两者都需要。 {% csrf_token %} 添加包含在 POST 请求中的隐藏字段。而 @csrf_protect 添加了一个由 {% csrf_token %} 使用的上下文变量。

You need both. {% csrf_token %} adds hidden fields that is included in POST requests. While @csrf_protect adds a context variable that is used by {% csrf_token %}.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文