首页 > 代码库 > Django-跨站请求

Django-跨站请求

//用户验证Tonken

 

在Html 中 设置一个Token 

{% csrf_token %}

 

//在代码Views.py 中返回值添加

 

context_instance=RequestContext(request )

Django-跨站请求