使用 csrf 令牌和模板上下文渲染模板

发布于 2024-10-21 18:11:10 字数 417 浏览 2 评论 0原文

目前我正在使用以下语法渲染 HTML 视图:

t = loader.get_template('sometemplate.html')
c = Context ({
    'title': title,
    'content': conent,
})
return HttpResponse(t.render(c))

我想在我的视图中添加具有 CSRF 保护的表单。我应该在语法中更改哪些内容,以便可以传递上下文和令牌来渲染视图?

Django 文档展示了使用 CSRF 令牌渲染视图的不同方法其中,但这些示例中没有传递其他上下文。

提前致谢!

Currently I am rendering HTML views with the following syntax:

t = loader.get_template('sometemplate.html')
c = Context ({
    'title': title,
    'content': conent,
})
return HttpResponse(t.render(c))

I want to add a form with CSRF protection in my view. What should I change in my syntax so I can pass both context and the token to render view?

The Django docs show a different approach for rendering a view with CSRF token in it, but there is no additional context passed in these examples.

Thanks in advance!

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

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

发布评论

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

评论(1

花伊自在美 2024-10-28 18:11:10

使用RequestContext代替Context?另外,您可以只使用 render_to_response 而不是返回 HttpResponse:

from django.shortcuts import render_to_response
from django.template import RequestContext

return render_to_response('sometemplate.html', { 'title': title, 'content': content }, context_instance=RequestContext(request))

Use RequestContext instead of Context? Also, you can just use render_to_response instead of returning a HttpResponse:

from django.shortcuts import render_to_response
from django.template import RequestContext

return render_to_response('sometemplate.html', { 'title': title, 'content': content }, context_instance=RequestContext(request))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文