从 ajax 源上的两个表中获取数据的最佳方法是什么?
我正在使用数据表,例如:
$('#user_types').dataTable({
'bServerSide' : true,
'bProcessing' : true,
'sAjaxSource' : 'datatables/ajax_file.php',
'iDisplayLength' : 50,
"sPaginationType": "bootstrap",
"oLanguage":{
"sSearch": "",
"sLengthMenu": "Limit: _MENU_"
},
'aaSorting': [[3, 'desc']],
'aoColumns' : [
null,
null,
null,
null,
null,
null,
null,
{'bSortable' : false},
]
})
现在,在 ajax_file.php 上,我正在从一张表中读取所有信息。现在我需要从另一个表中获取一列,我该怎么做?