django_notice
Updated:
Contents
最近在学习django,在学习django过程中将遇到的问题记录下来,做一下备份。
CSRF token missing or incorrect
在template中,为每一个POST form增加一个
\{%csrf_token%\}
的tag。如下,
在 view 中, 使用 django.template.RequestContext 而不是 Context. render_to_response, 默认使用 Context. 需要改成 RequestContext. 导入 class: from django.template import RequestContext 给 render_to_response 增加一个参数: def your_view(request): … return render_to_response(‘template.html’, your_data, context_instance=RequestContext(request) )
坚持就是胜利