django使用ajax post数据出现403错误如何解决
程序员文章站
2022-05-11 17:55:08
...
在django中,使用jquery ajax post数据,会出现403的错误,该如何解决呢?下面由我帮大家解决django使用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 < 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't 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",'')
上面是我整理给大家的,希望今后会对大家有帮助。
相关文章:
以上就是django使用ajax post数据出现403错误如何解决的详细内容,更多请关注其它相关文章!
上一篇: http://www.12306.cn/mormhweb/k PHP初学入门
下一篇: laravel - composer安装后显示找不到模块是怎么回事?但扩展经过查询是有的,php.ini也打开了(如截图所示)
推荐阅读
-
django中使用jquery ajax post数据出现403错误的解决办法(两种方法)
-
使用wordpress的$wpdb类读mysql数据库做ajax时出现的问题该如何解决
-
django使用ajax post数据出现403错误如何解决
-
django中使用jquery ajax post数据出现403错误的解决办法(两种方法)
-
使用wordpress的$wpdb类读mysql数据库做ajax时出现的问题该如何解决
-
django使用ajax post数据出现403错误如何解决
-
django使用ajax post数据出现403错误如何解决
-
使用wordpress的$wpdb类读mysql数据库做ajax时出现的问题该如何解决
-
django中使用jquery ajax post数据出现403错误的解决办法
-
使用wordpress的$wpdb类读mysql数据库做ajax时出现的问题该如何解决