主頁 > 知識庫 > django使用ajax post數(shù)據(jù)出現(xiàn)403錯誤如何解決

django使用ajax post數(shù)據(jù)出現(xiàn)403錯誤如何解決

熱門標(biāo)簽:科智聯(lián)智能電銷機(jī)器人 上海浦東百度地圖標(biāo)注中心注冊 目標(biāo)三維地圖標(biāo)注 襄陽外呼系統(tǒng)接口 老虎郵局地圖標(biāo)注點 青海醫(yī)療智能外呼系統(tǒng)怎么樣 百靈鳥 外呼系統(tǒng)獲取客戶手機(jī)號 徐州電銷卡外呼系統(tǒng)供應(yīng)商

本文通過兩種方法給大家介紹在django中,使用jquery ajax post數(shù)據(jù),會出現(xiàn)403的錯誤,具體內(nèi)容請看下文。

方法一:

如果用jQuery來處理ajax的話,Django直接送了一段解決問題的代碼。把它放在一個獨(dú)立的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數(shù)據(jù)的view前加@csrf_exempt裝飾符

例如

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

以上通過兩種方法跟大家介紹了django使用ajax post數(shù)據(jù)出現(xiàn)403錯誤,希望對大家有所幫助。

您可能感興趣的文章:
  • Django框架如何使用ajax的post方法
  • django中使用jquery ajax post數(shù)據(jù)出現(xiàn)403錯誤的解決辦法(兩種方法)
  • Django中ajax發(fā)送post請求 報403錯誤CSRF驗證失敗解決方案
  • django ajax發(fā)送post請求的兩種方法
  • django獲取ajax的post復(fù)雜對象的實現(xiàn)方法
  • django學(xué)習(xí)之a(chǎn)jax post傳參的2種格式實例

標(biāo)簽:揭陽 佛山 辛集 荊州 咸寧 股票 紅河 商洛

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《django使用ajax post數(shù)據(jù)出現(xiàn)403錯誤如何解決》,本文關(guān)鍵詞  django,使用,ajax,post,數(shù)據(jù),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《django使用ajax post數(shù)據(jù)出現(xiàn)403錯誤如何解決》相關(guān)的同類信息!
  • 本頁收集關(guān)于django使用ajax post數(shù)據(jù)出現(xiàn)403錯誤如何解決的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章