jquery.min 500内部错误是什么原因引起的?

时间:2018-10-05 09:07:50

标签: javascript jquery json ajax web

嗨,我按此按钮时出现500个内部服务器错误:

$(".btn-email").on('click', function() {
    swal('Waiting','Please wait, sending email now','info');
    $.getJSON("/api/addvoter",{"email":$(".voter-email").val(),"vote_id":$(".vote-id").val()},function(result){
        if(result.success == 1){
            swal("Good job!", "Send an email to the voter successfully!", "success");
            $(".voter-email").val("");
        }else{
            sweetAlert("Oops...", result.content, "error");
        }
    });

});

error image

我正在使用here的开源Blockvote系统

什么可能导致此错误?

2 个答案:

答案 0 :(得分:0)

API损坏,请先修复

答案 1 :(得分:0)

如果有人遇到相同的问题,则主要问题在于数据库版本本身和根url。在Apache配置中需要maria db和正确的根URL。