我正在为FiveM的服务器网站设置一个“统计”页面,我需要有关如何使用Jquery数据表显示数据的帮助
我对API一无所知,因此我尝试使用PHP进行一些操作,但没有什么真正有用的:/
这是我的代码:
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>test-astos</title>
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.19/css/jquery.dataTables.css">
<script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.10.19/js/jquery.dataTables.js"></script>
</head>
<body>
<table id="table_id" class="display">
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
</tr>
</thead>
<tbody>
<!-- data -->
</tbody>
</table>
<script type="text/javascript">
$(document).ready( function () {
$('#table_id').DataTable({
$.ajax({
url : 'https://api.top-serveurs.net/v1/servers/SC4VCSEUS3/players-ranking',
type : 'GET',
dataType : 'json',
success : function(json, statut){ // code_html contient le HTML renvoyé
}
});
});
});
</script>
</body>
</html>
我想用Jquery数据表显示那些数据(https://api.top-serveurs.net/v1/servers/SC4VCSEUS3/players-ranking)。
谢谢:)。
答案 0 :(得分:1)
首先,您忘记使用jQuery CDN,请参见示例。并像这样使用
<table id="table_id" class="display">
<thead>
<tr>
<th>Votes</th>
<th>Player Name</th>
</tr>
</thead>
<tbody>
<!-- data -->
</tbody>
</table>
<script type="text/javascript">
$(document).ready( function () {
$.ajax({
url : 'https://api.top-serveurs.net/v1/servers/SC4VCSEUS3/players-ranking',
type : 'GET',
dataType : 'json',
success : function(data) {
bindtoDatatable(data.players);
}
});
});
function bindtoDatatable(data) {
var table = $('#table_id').dataTable({
"bAutoWidth" : false,
"aaData" : data,
"columns" : [ {
"data" : "votes"
}, {
"data" : "playername"
} ]
})
}
</script>