可以通过以下步骤完成:
[
{
"id": 1,
"name": "John Doe",
"age": 25,
"email": "john@example.com"
},
{
"id": 2,
"name": "Jane Smith",
"age": 30,
"email": "jane@example.com"
},
{
"id": 3,
"name": "Bob Johnson",
"age": 35,
"email": "bob@example.com"
}
]
import React from 'react';
import { Table } from 'react-bootstrap';
import data from './data.json';
render() {
return (
<Table striped bordered>
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Age</th>
<th>Email</th>
</tr>
</thead>
<tbody>
{data.map(item => (
<tr key={item.id}>
<td>{item.id}</td>
<td>{item.name}</td>
<td>{item.age}</td>
<td>{item.email}</td>
</tr>
))}
</tbody>
</Table>
);
}
这样,你就可以将JSON文件数据插入React Bootstrap表格中了。每个数据项将作为表格的一行显示。你可以根据需要自定义表格的样式和功能。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云