django使用ajax post数据出现403错误的解决方法
来源:爱站网时间:2021-03-01编辑:网友分享
我们在django使用ajax post数据的时候出现了403错误的情况应该怎么办呢?接下来的内容中我们就跟爱站小编一起去看看django使用ajax post数据出现403错误的解决方法吧。
我们在django使用ajax post数据的时候出现了403错误的情况应该怎么办呢?接下来的内容中我们就跟爱站小编一起去看看django使用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中使用jquery ajax post数据出现403的错误的解决方法。