django使用ajax post数据出现403错误如何解决

django使用ajax post数据出现403错误如何解决

本文通过两种方法给大家介绍在django中,使用jquery ajax post数据,会出现403的错误,具体内容请看下文。方

本文通过两种方法给大家介绍在django中,使用jquery ajax post数据,会出现403的错误,具体内容请看下文。

方法一:

如果用jQuery来处理ajax的话,Django直接送了一段解决问题的代码。把它放在一个独立的js文件中,在html页面中都引入即可。注意这个js文件必须在jquery的js文件引入之后,再引入即可

 $(document).ajaxSend(function(event, xhr, settings) { function getCookie(name) { var cookieValue = null; if (document.cookie && document.cookie != '') { var cookies = document.cookie.split(';'); for (var i = ; i 

方法二:

在处理post数据的view前加@csrf_exempt装饰符

例如

 @csrf_exempt def profile_delte(request): del_file=request.POST.get("delete_file",'')

以上通过两种方法跟大家介绍了django使用ajax post数据出现403错误,希望对大家有所帮助。

以上就是django使用ajax post数据出现403错误如何解决的详细内容,更多请关注易知道|edz.cc其它相关文章!

推荐阅读