django csrf token添加
Posted zhengze
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django csrf token添加相关的知识,希望对你有一定的参考价值。
#views.py from django.shortcuts import render_to_response, RequestContext from django.views.decorators.csrf import csrf_protect @csrf_protect def index(request): if request.method == "GET": return render_to_response("index.html", context_instance=RequestContext(request)) else: return render_to_response("index.html", context_instance=RequestContext(request))
#index.html <form> {% csrf_token %} </form>
以上是关于django csrf token添加的主要内容,如果未能解决你的问题,请参考以下文章
django 页面进行ajax post提交时,页面要添加{% csrf_token %}
django 页面进行ajax post提交时,页面要添加{% csrf_token %}
django 页面进行ajax post提交时,页面要添加{% csrf_token %}