django与ajax结合

用post提交数据,需要用到插件

from django.views.decorators.csrf import csrf_exempt

然后在函数上方放上@csrf_exempt

实例

@csrf_exempt
def ajax(requset):
    """测试"""
    return HttpResponse("success")

你可能感兴趣的:(python_django,django,python,后端)