Django jquery ajax 返回403
Posted python真好用
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Django jquery ajax 返回403相关的知识,希望对你有一定的参考价值。
今天在写ajax发出post请求的时候返回
Failed to load resource: the server responded with a status of 403 (Forbidden)
很明显这是拒绝访问了这条数据,这是为啥呢?
Django需要经过CSRF(Cross-Site Request Forgery,跨站点伪造请求)令牌认证后才可以请求获取数据。
很简单,只需要在你的模板中加入一下这段代码就可以轻松解决了。
<script>
function getCookie(name)
var cookieValue = null;
if (document.cookie && document.cookie !== '')
var cookies = document.cookie.split(';');
for (var i = 0; i < cookies.length; i++)
var cookie = jQuery.trim(cookies[i]);
// Does this cookie string begin with the name we want?
if (cookie.substring(0, name.length + 1) === (name + '='))
cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
break;
return cookieValue;
var csrftoken = getCookie('csrftoken');
function csrfSafeMethod(method)
// these HTTP methods do not require CSRF protection
return (/^(GET|HEAD|OPTIONS|TRACE)$/.test(method));
$.ajaxSetup(
beforeSend: function(xhr, settings)
if (!csrfSafeMethod(settings.type) && !this.crossDomain)
xhr.setRequestHeader("X-CSRFToken", csrftoken);
);
</script>
以上是关于Django jquery ajax 返回403的主要内容,如果未能解决你的问题,请参考以下文章
带有 django 的 JQuery AJAX 获取 csrf 错误 403
通过 jQuery 进行 ajax 调用时出现 403 错误
jQuery 似乎无法识别具有 Ajax 调用状态码 403 的不同字符串
axios post请求和JQuery $ .ajax请求都是在移动设备上返回403禁止错误