У меня проблема с отображением моего json объекта внутри таблицы с использованием плагина DataTables
.
Это мой json объект:
{
"data":[
{
"attributes":{
"siteID":"0002"
},
"date":{
"attributes":{
"dateValue":"20200304"
},
"traffic":[
{
"attributes":{
"code":"01",
"exits":"0",
"enters":"0",
"startTime":"000000"
}
},
{
"attributes":{
"code":"01",
"exits":"0",
"enters":"0",
"startTime":"010000"
}
},
{
"attributes":{
"code":"01",
"exits":"0",
"enters":"0",
"startTime":"020000"
}
},
{
"attributes":{
"code":"01",
"exits":"0",
"enters":"0",
"startTime":"030000"
}
}
]
}
},
{
"attributes":{
"siteID":"0004"
},
"date":{
"attributes":{
"dateValue":"20200304"
},
"traffic":[
{
"attributes":{
"code":"01",
"exits":"0",
"enters":"0",
"startTime":"000000"
}
},
{
"attributes":{
"code":"01",
"exits":"0",
"enters":"0",
"startTime":"010000"
}
},
{
"attributes":{
"code":"01",
"exits":"0",
"enters":"0",
"startTime":"040000"
}
},
{
"attributes":{
"code":"01",
"exits":"0",
"enters":"0",
"startTime":"030000"
}
}
]
}
}
]
}
Я добавил строки таблицы вручную, и она отлично работает: это снимок экрана результата. Но я хотел бы, чтобы тело таблицы создавалось динамически с использованием моего json объекта.
Я действительно новичок в этом, и я был бы признателен за некоторую помощь. Спасибо тебе.