我的ajax请求不断失败

时间:2018-07-04 02:55:08

标签: jquery ajax

我正在使用keyup函数从使用以下Ajax代码的赞助商ID输入中获取赞助商名称:

$(document).ready(function(){
    $("#sponsor").change(function(){
        var sponsorID= $(this).val();
        $.ajax({
            type: "POST",
            data: { sponsorID: sponsorID},
            url: "<?php echo base_url('site/getsponsorName');?>",
            success: function(){
                alert('success');
              },
              error: function(){
                alert('failure');
              }
        });
    });
});

这是我的功能:

public function getsponsorName(){
    $this->db->select('name');
    $this->db->where('id',$this->input->post('sponsorID'));
    $qr = $this->db->get('user');
    $res = $qr->row(); //echo "<script type='text/javascript'>alert('$res->name');</script>";
        echo $res->name;
}

我每次都会出错。

0 个答案:

没有答案