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>

  

 

上一篇:python-在Django中创建单例,或通过其他任何方式针对全局的,按请求的可用对象


下一篇:(三十八) 跟我学习SpringCloud-Spring Cloud实现Zuul自带的Debug功能