我有一个下拉选择标记用于显示我的数据库中的数据我也使用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);
}
这是我的查询
答案 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
。