结果fromm ajax请求进入错误功能

时间:2017-12-01 05:24:30

标签: javascript php jquery ajax

我有一个下拉选择标记用于显示我的数据库中的数据我也使用ajax请求从数据库中获取我的数据但我遇到的问题是,当我得到结果时,我的{{1} }

error:function()

这是我的函数..该结构的原因是admin_table.on('click', '#pay', function() { $tr = $(this).closest('tr'); var data = admin_table.row($tr).data(); $(document).on('click', '#dr_1', function(){ $.ajax({ type:'POST', url:'../functions/ajax/get_delivery_receipts.php', data:{ id: data['user_id'] }, dataType:'JSON', sucess: function(data){ console.log(data); }, error: function(err){ console.log(err.responseText); } }); }); }); 是表格中的一个按钮.. '#pay'位于第一个id为点击时弹出的模态内。 / p>

'#dr_1'

这是在ajax请求中。

if (isset($_POST)) {
    $id = $_POST['id'];
    $res = $db->dr($id);
    echo json_encode($res);
} 

这是我的查询

1 个答案:

答案 0 :(得分:1)

  

错误

     

类型:函数(jqXHR jqXHR,String textStatus,String errorThrown)

会建议:

    $(document).on('click', '#dr_1', function(){
      $.ajax({
        type: 'POST',
        url: '../functions/ajax/get_delivery_receipts.php',
        data: {
          id: data['user_id']
        },
        dataType: 'JSON',
        success: function(data, status, jqx){
          console.log(data, staus, jqx);
        },
        error: function(jqx, status, err){
          console.log(jqx, status, err);
        }
      });
    });

我怀疑sucess是个问题。这是success