我有以下代码使用语义UI创建分页,但是如何更改默认的Faker值
默认伪造者值
import faker from 'faker'
const createItems = count =>
new Array(count).fill(0).map(() => {
return `${faker.name.firstName()} ${faker.name.lastName()}`;
});
我将json文件导入为
import cardData from "../Data/response.json";
我怎样才能用来自json文件的数据替换伪造的数据。
//我的json数据
{
"data": {
"Table": [
{
"id": "1001",
"first_name": "Alez"
},
{
"id": "1002",
"first_name": "Baro"
},
{
"id": "1003",
"first_name": "Tata"
},
{
"id": "1004",
"first_name": "test 4"
},
{
"id": "1005",
"first_name": "alex"
},
{
"id": "1006",
"first_name": "ki"
},
]
}
}
有关更多信息数据,请输入我的代码here