2
$.ajax({
url: "https://localhost:450/rest/products?pageNumber=1&pageCount=100",
type:"post",
dataType:"json",
traditional:true,
contentType : "application/json; charset=utf-8",
processData : false,
data:
JSON.stringify(hostAddresses)
,
success:function (response) {
console.log(response);
var trHTML ='';
$('.js-exportable').DataTable({
dom: 'Bfrtip',
responsive: true,
buttons: [
'copy', 'csv', 'excel', 'pdf', 'print'
]
});
for(var i = 0 ; i < response.length ; i++)
{
for(var j = 0 ; j < response[i].Products.length ; j ++)
{
// trHTML += '<tr><td>' +response[i].IP + '</td><td>' + response[i].Products[j].Product + '</td><td>' + response[i].Products[j].CVECount + '</td>';
//console.log(response[i].Products[j].Product);
//console.log(trHTML);
//$('#ProductsTableBody').append(trHTML);
}
}
},
error:function (xhr) {
console.log("Error...");
}
})
これらのdataTableを追加した後、リストアイテムにidを割り当てると、そのアイテムをクリックするとそのアイテムに関連付けられた特別なページが表示されます。
あなたはあなたのためのテーブルを生成するのDataTableを使用して、はるかに良いだろう。ここをクリックしてください:https://datatables.net/reference/option/ajax – annoyingmouse
私はそれを確認しましたが、私は解決策を見つけることができませんでした –
おそらくあなたが戻ってくるデータのサンプルを提供したのですか? – annoyingmouse