我的服务器成功时“返回 HttpResponse()”,失败时“返回 HttpResponse(status=400)”。我的客户有以下 jquery ajax 功能:
$('#submit').click(function(){
$.post("{% url 'addcomment' %}", {msg:$('#newcomment').val()}, function(data,status){
if (status==200) {
location.reload()
} else {
alert("Comment failed")
}
});
});
但是ajax代码不起作用。任何想法?