1

我允许用户通过 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>

视图.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
4

1 回答 1

4

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

于 2013-04-25T20:14:14.463 回答