您好,我正在构建一个应用程序,该应用程序呈现一个从 API 接收数据的表。
我正在使用 MDBReact 表,我很难将行添加到表中。
在 this.state 中,我有一个对象数据表,其中包含一个数组名称行,我想将对象添加到这个数组中。
这是我尝试过的代码,但它不起作用。
问题出在this.setState中,我应该如何将对象添加到数据表对象中包含的数组中。谢谢
import React, { useState } from 'react';
import { MDBDataTableV5 } from 'mdbreact';
import axios from 'axios';
class ListaMesaje extends React.Component {
componentDidMount() {
axios.get(`http://localhost/spv/react-php/src/server.php`)
.then(res => {
const persons = res.data;
for(var i = 0; i < 3; i++) {
this.setState({datatable:{...this.state.datatable,rows:persons.mesaje[i]}})
}
})
}
constructor(props){
super(props);
this.state = {
datatable: {
columns: [
{
label: 'CIF',
field: 'cif',
width: 150,
attributes: {
'aria-controls': 'DataTable',
'aria-label': 'Name',
},
},
{
label: 'Data creare',
field: 'data_creare',
width: 270,
},
{
label: 'ID Solicitare',
field: 'id_solicitare',
width: 200,
},
{
label: 'Tip',
field: 'tip',
sort: 'asc',
width: 100,
},
{
label: 'ID',
field: 'id',
sort: 'disabled',
width: 150,
},
{
label: 'Detalii',
field: 'detalii',
sort: 'disabled',
width: 100,
},
],
rows: [
],
}
}
}
render() {
return(
<div>
<MDBDataTableV5 hover entriesOptions={[5, 20, 25]} entries={5} pagesAmount={4} data=
{this.state.datatable} fullPagination />
</div>
);
}
}
export default ListaMesaje;