获得403 Forbidden错误甚至提供CSRF令牌

获得403 Forbidden错误甚至提供CSRF令牌

问题描述:

下面是我的Ajax POST请求获得403 Forbidden错误甚至提供CSRF令牌

这是模板

<script type="text/javascript"> 
    function submit_vote(){ 
     callback = function(data){ 
      alert(data.message); 
     }; 

     $.post("{{request.get_full_path}}vote",{ 
      "rating" : $('#{{hash_id}}').raty('score') 
     }, callback, "json"); 
    } 
</script> 

<div class="rating" id="{{hash_id}}" onclick="submit_vote()"></div> 

在景色,这里是后

这是认为,呈现其中存在Ajax脚本的模板

@csrf_protect 
def show_rating(request, **kwargs): 
    .... 
    .... 
    return render_to_response("rating.html", 
       context, 
       context_instance = RequestContext(request)) 

这是需要POST请求的视图牛逼

@login_required 
@csrf_protect 
def submit_vote(request, **kwargs): 
    if not request.method == "POST": 
     raise Http404 

    ... 
    ... 

    data = {"error" : False, "message" : "Thanks"} 
    data = simplejson.dumps(data) 
    return HttpResponse(data, mimetype="application/javascript") 

在尝试上述代码中,我得到403 Forbidden错误。通过使用Django文档,我添加了另一个剧本到现有的代码(在顶部)

<script type="text/javascript"> 
function csrfSafeMethod(method) { 
    // these HTTP methods do not require CSRF protection 
    return (/^(GET|HEAD|OPTIONS|TRACE)$/.test(method)); 
} 
function sameOrigin(url) { 
    // test that a given url is a same-origin 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)); 
} 
$.ajaxSetup({ 
    beforeSend: function(xhr, settings) { 
     if (!csrfSafeMethod(settings.type) && sameOrigin(settings.url)) { 
      // Send the token to same-origin, relative URLs only. 
      // Send the token only if the method warrants CSRF protection 
      // Using the CSRFToken value acquired earlier 
      xhr.setRequestHeader("X-CSRFToken", csrftoken); 
     } 
    } 
}); 
</script> 

现在我越来越

Uncaught ReferenceError: csrftoken is not defined 

错误..

如何解决呢?实际上,我不知道Ajax和Jquery和JS ..只是试图从网上的教程建立一个简单的请求!

您只需在您的发布请求中发送csrfmiddlewaretoken,它应该被修复。

$.post("{{request.get_full_path}}vote",{ 
     "rating" : $('#{{hash_id}}').raty('score'), 
     "csrfmiddlewaretoken": {{csrf_token}}, 
    }, callback, "json"); 

您不需要任何其他脚本。