xxxxxxxxxx
1
<div id="datatable" data-mdb-loading="true"></div>
1
1
xxxxxxxxxx
1
const tableColumns = [
2
{ label: 'Address', field: 'address' },
3
{ label: 'Company', field: 'company' },
4
{ label: 'Email', field: 'email' },
5
{ label: 'Name', field: 'name' },
6
{ label: 'Phone', field: 'phone' },
7
{ label: 'Username', field: 'username' },
8
{ label: 'Website', field: 'website' },
9
];
10
11
var asyncTable = new mdb.Datatable(
12
document.getElementById('datatable'),
13
{ columns: tableColumns, },
14
{ loading: true }
15
);
16
17
fetch('https://jsonplaceholder.typicode.com/users')
18
.then((response) => response.json())
19
.then((data) => {
20
asyncTable.update({}, {loading: false})
21
asyncTable.dispose();
22
document.getElementById('datatable').innerHTML = '';
23
asyncTable = new mdb.Datatable(
24
document.getElementById('datatable'),
25
{ columns: tableColumns,
26
rows: data.map((user) => ({
27
...user,
28
address: `${user.address.city}, ${user.address.street}`,
29
company: user.company.name,
30
})), },
31
{ loading: false }
32
);
33
});
Console errors: 0