Django ajax文件上传问题csrf

发布于 2024-09-26 18:30:49 字数 414 浏览 1 评论 0原文

我正在尝试使用 django 进行 ajax 文件上传。我试图使这个示例正常工作

http://www.johnberns.com/2010/07/08/using-valums-jquery-ajax-upload-with-django-1-2/

但奇怪的是我一直得到“无”对于我的 csrf 令牌,更奇怪的是我正在执行 POST 调用发送文件,但我在服务器上得到的只是以下命令:

{u'csrfmiddlewaretoken': [u'None']}

我做错了什么?

I'm trying to do a ajax file upload using django. I am trying to make this example work

http://www.johnberns.com/2010/07/08/using-valums-jquery-ajax-upload-with-django-1-2/

But strangely I keep getting "None" for my csrf token and even more strange is that I am doing the POST call sending the file but all I get on the server is just the following dict:

{u'csrfmiddlewaretoken': [u'None']}

What am I doing wrong?

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

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

发布评论

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

评论(1

梦幻之岛 2024-10-03 18:30:50

该链接文章的整个前提都是错误的。您无需担心 CSRF 令牌 - 对于 Ajax 上传,CSRF 保护会自动禁用,因为无法使其可靠地工作。请参阅文档

The whole premise of that linked article is wrong. You don't need to worry about the CSRF token - CSRF protection is automatically disabled for Ajax uploads, since there is no way of making it work reliably. See the documentation.

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