2012-03-25 1 views

答えて

3

あなたは、このためのjQueryを必要としません。 Create a form that performs a POST to the appropriate URLと提出してください。ここで

+0

[OK]をありがとうございました! CSRF検証が403エラーに失敗しました。私はすでにjavascriptスニペットを追加しました。 [リンク](https://docs.djangoproject.com/en/dev/ref/contrib/csrf/#ajax) – Zach

+1

あなたは '{%csrf_token%}を介してJavaScriptにCSRFトークンを渡す必要がありますいずれか'またはビューにCSRFの取り扱いを変更する[CSRFデコレータ(https://docs.djangoproject.com/en/dev/ref/contrib/csrf/#utilities)のいずれかを使用します。 –

+0

もう一度ありがとう – Zach

0

は、DjangoのサーバーにPOSTを介してデータを送信するための私のコードです。私はイグナシオが提案したサイトを見直し、さらにcsrfを追加して、典型的なDjanoビューで動作するようにしました。

// get cookie using jQuery 
    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 post_to_url(path, params, method) { 
     method = method || "post"; // Set method to post by default if not specified. 

     // The rest of this code assumes you are not using a library. 
     // It can be made less wordy if you use one. 
     var form = document.createElement("form"); 
     form.setAttribute("method", method); 
     form.setAttribute("action", path); 

     for(var key in params) { 
      if(params.hasOwnProperty(key)) { 
       var hiddenField = document.createElement("input"); 
       hiddenField.setAttribute("type", "hidden"); 
       hiddenField.setAttribute("name", key); 
       hiddenField.setAttribute("value", params[key]); 

       form.appendChild(hiddenField); 
      } 
     } 

     csrfField = document.createElement("input"); 
     var csrftoken = getCookie('csrftoken') 
     console.log("token" + csrftoken) 
     csrfField.setAttribute("type", "hidden"); 
     csrfField.setAttribute("name", "csrfmiddlewaretoken"); 
     csrfField.setAttribute("value", csrftoken) 
     form.appendChild(csrfField) 

     document.body.appendChild(form); 
     form.submit(); 
    } 
関連する問題