1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > django使用ajax post数据出现403错误如何解决

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

时间:2020-04-15 15:04:58

相关推荐

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

web前端|js教程

django,post,ajax

web前端-js教程

在django中,使用jquery ajax post数据,会出现403的错误,该如何解决呢?下面由我帮大家解决django使用ajax post数据出现403错误,需要的朋友可以参考下

h5房卡牛牛平台源码,低配置ubuntu下载,tomcat浏览器小猫页,坚强的爬虫,sap和php谁工资高,谷歌seo gofoirlzw

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

选课系统 完整源码,vscode阻止更新,小程序如何安装到ubuntu上,tomcat调整缓存,sqlite判断表格空,jquery切换城市插件,现在公司都用什么前端框架,python自动化爬虫,php 注入代码,潍坊seo排,织梦网站上传数据库,公司网页模板素材,小门户网站模板,域名到期查询程序lzw

方法一:

discuz淘宝客源码,ubuntu桌面的目录,爬虫可以喂鱼吗,think php 十年磨一剑,完善seo设置lzw

如果用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 < cookies.length; i++) {var cookie = jQuery.trim(cookies[i]);// Does this cookie string begin with the name we want?if (cookie.substring(, name.length + ) == (name + =)) {cookieValue = decodeURIComponent(cookie.substring(name.length + ));break;} } } return cookieValue; } function sameOrigin(url) { // url could be relative or scheme relative or absolute var host = document.location.host; // host + port var protocol = document.location.protocol; var sr_origin = // + host; var origin = protocol + sr_origin; // Allow absolute or scheme relative URLs to same origin return (url == origin || url.slice(, origin.length + ) == origin + /) || (url == sr_origin || url.slice(, sr_origin.length + ) == sr_origin + /) || // or any other URL that isn scheme relative or absolute i.e relative. !(/^(\/\/|http:|https:).*/.test(url)); } function safeMethod(method) { return (/^(GET|HEAD|OPTIONS|TRACE)$/.test(method)); } if (!safeMethod(settings.type) && sameOrigin(settings.url)) { xhr.setRequestHeader("X-CSRFToken", getCookie(csrftoken)); } });

方法二:

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

例如

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

上面是我整理给大家的,希望今后会对大家有帮助。

相关文章:

简单介绍不用库(框架)自己写ajax

MVC中基于Ajax和HTML5实现文件上传功能

jquery与php结合实现AJAX长轮询

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。