Django Ajax表单提交指向403 Forbidden

时间:2013-04-25 20:09:43

标签: python ajax django jquery

我允许用户通过ajax删除帖子。帖子有一个布尔字段live_until_removed。设置为false时,帖子会消失。

点击删除时我给了403,引用:

xhr.send( ( s.hasContent && s.data ) || null );

如何让它顺利运行?为什么会发生这种错误?

JS:

$('#removeForm').submit(function() { // catch the form's submit event
    $.ajax({
        data: $(this).serialize(),
        type: $(this).attr('method'), 
        url: $(this).attr('action'),
        success: function(response) {
            $('.close-post').html(response); // update the DIV
            console.log(response);
        },
        error: function(response){
            console.log(response);
        }
    });
    return false;
});

模板:

<div class="close-post">
     {% if not post.live_until_removed %}
     <form class="" id="removeForm" method="POST" action="">
          <button type="submit" class="btn">Remove</button>
     </form>
     {% else %}
     <button class="btn">Removed</button>
     {% endif %}
</div>

views.py:

def post(request, id):
    ...
     if request.is_ajax():
          try: 
               post = Post.objects.get(id=id)
               post.live_until_removed = False
               post.save()
               response = simplejson.dumps({"status": "Removed"})
          except:
               pass

1 个答案:

答案 0 :(得分:4)

您可能错过了在请求中发送CSRF令牌。看看这里; Django-Ajax