如何将 django csrf 令牌直接嵌入到 HTML 中?

发布于 2024-09-10 18:28:03 字数 88 浏览 5 评论 0原文

有没有办法直接从我正在编辑的 Python 文件中插入 csrf 令牌?每个会话的令牌都不同,因此将其存储在数据库中并不是很有用。有没有办法在视图中动态加载令牌?

Is there a way to insert the the csrf token directly from within the Python files I'm editing? The token is different for each session, so storing it in the DB is not very useful. Is there a way to dynamically load the token within the view?

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

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

发布评论

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

评论(2

会发光的星星闪亮亮i 2024-09-17 18:28:03

调用 django.middleware.csrf.get_token(request) 获取 CSRF 令牌。

Call django.middleware.csrf.get_token(request) to get the CSRF token.

习ぎ惯性依靠 2024-09-17 18:28:03

使用方法直接在模板中使用它。

来自文档,:

<form action="" method="post">
{% csrf_token %}

就是你必须包括。

The way to use it, is to use it directly in the templates.

From the documentation,:

<form action="" method="post">
{% csrf_token %}

is all you have to include.

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