6

这是我的代码

<script type="text/javascript">
$(document).ready(function() {
    $('#spc-comment-flag-form').submit(function() {
        $.ajax({
            data: $(this).serialize(),
            type: $(this).attr('method'),
            url: $(this).attr('action'), 
            success: function(data) {
                if( data['error'] == false) {
                    var msg = 'We got your flag. Our moderators will now look into it. You may close the window now!';
                    $('#spc-comment-flag-response').html(msg);
                }
                else {
                    $('#spc-comment-flag-response').html(data);
                }   
            },
        });
        return false;
    });
});
</script>

编辑

在服务器端它是这样的:

@csrf_protect
@login_required
def flag(request, comment_id, next=None):
    if not request.is_ajax():
        raise Http404
    data = {}
    if request.method == 'POST':
        ...
        data = simplejson.dumps(data)
        return HttpResponse(data, mimetype="application/javascript")
    else:
        raise Http404

我基本上是服务器端的人,很少需要编写 JS。我发送了“错误”:如果错误消息有错误,则为真,如果服务器上没有错误,则“错误”:假​​!

我不知道为什么在上面的代码中条件逻辑不起作用!!任何人都可以帮我解决它吗?

4

4 回答 4

7

试试这个...

$(document).ready(function() {
        $('#spc-comment-flag-form').submit(function() {
            $.ajax({
                data: $(this).serialize(),
                type: $(this).attr('method'),
                url: $(this).attr('action'), 
                success: function(data) {
                    if( data['error'] == false) {
                        var msg = 'We got your flag. Our moderators will now look into it. You may close the window now!';
                        $('#spc-comment-flag-response').html(msg);
                    }
                    else {
                        $('#spc-comment-flag-response').html(data);
                    }   
                },
                error: function (data) {
                       var r = jQuery.parseJSON(data.responseText);
                       alert("Message: " + r.Message);
                       alert("StackTrace: " + r.StackTrace);
                       alert("ExceptionType: " + r.ExceptionType);
                }
            });
            return false;
        });
    });
于 2013-06-26T12:19:14.283 回答
1

你必须使用

error: function( jqXHR jqXHR, String textStatus, String errorThrown){
   ...
   ...
}

完整的文档

于 2013-07-01T06:10:37.030 回答
1

您可以使用此代码.. 如果您想处理 Web请求中的错误...

http://api.jquery.com/jQuery.ajax/

$.ajax({

}).done(function (data) {

}).fail(function (jqXHR, textStatus) {

});

关于在您的服务器端验证中,您可以使用json返回错误...

于 2013-06-26T06:57:04.683 回答
0
  success: function(data)
  {
    if(data.error){
       //alert error
    }
    else{
       //alert('Success');
    }
  },
  error: function(XMLHttpRequest, textStatus, errorThrown)
  {
     alert('Internal server error');
     //some stuff on failure
  }

error回调还处理服务器端未捕获的错误。

于 2013-06-26T06:41:21.643 回答