django中使用jquery ajax post數(shù)據(jù)出現(xiàn)403錯(cuò)誤的解決辦法(兩種方法)
在django中,使用jquery ajax post數(shù)據(jù),會出現(xiàn)403的錯(cuò)誤
方法一:
如果用jQuery來處理ajax的話,Django直接送了一段解決問題的代碼。把它放在一個(gè)獨(dú)立的js文件中,在html頁面中都引入即可。注意這個(gè)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 = 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;
}
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(0, origin.length + 1) == origin + '/') ||
(url == sr_origin || url.slice(0, sr_origin.length + 1) == 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數(shù)據(jù)的view前加@csrf_exempt裝飾符
例如
@csrf_exempt
def profile_delte(request):
del_file=request.POST.get("delete_file",'')
以上通過兩種方法解決了django ajax post 403錯(cuò)誤,當(dāng)然解決方法也不止這兩種,歡迎多多分享自己的見解,本文寫的不好,還請見諒,謝謝。
相關(guān)文章
Ajax請求過程中下載文件在FireFox(火狐)瀏覽器下的兼容問題
最近做了個(gè)項(xiàng)目,其中有項(xiàng)目需求是這樣的,點(diǎn)擊一個(gè)文件鏈接下載該文件,同時(shí)向后臺發(fā)送請求,在開發(fā)過程中問題百出,小編把問題總結(jié)分享在腳本之家平臺,供大家參考2016-01-01
基于Ajax和forms組件實(shí)現(xiàn)注冊功能的實(shí)例代碼
本文通過實(shí)例代碼給大家分享了基于Ajax和forms組件實(shí)現(xiàn)注冊功能,需要的朋友可以參考下2018-02-02
jquery ajax多次請求數(shù)據(jù)時(shí) 不刷新問題的解決方法
下面小編就為大家?guī)硪黄猨query ajax多次請求數(shù)據(jù)時(shí) 不刷新問題的解決方法。小編覺得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧2016-10-10

