我正在从服务器请求数据,然后尝试将其分配给items. console.log 显示正确的数据,但出现错误:Failed prop type: Invalid props 'items' of type 'object supplied to Timeline, expected array'. I thoughtitems.add` 将数据集转换为数组?
var items = new vis.DataSet();
items.add(data.abs.map(a, index) => ({
id: index + 1,
content: a.Ent,
start: a.time,
title: a.Trc,
end: null
})));
数据:
"data": {
"abs": [
{
"Ent": "Changed",
"time": 1499348050000,
"Trace": [
{
"filename": "C:/Users/Public/Desktop/word.doc"
}
]
}