网址链接:https://docs.djangoproject.com/en/1.8/ref/csrf/
1. 在使用csrf中间件时免除csrf:用装饰器
from django.views.decorators.csrf import csrf_exempt
@csrf_exempt
2.不用csrf中间件是使用csrf:用装饰器
from django.views.decorators.csrf import csrf_protect
@csrf_protect