初始数据:
转化为
代码:
const data="初始数据"
const arr=[]
Object.keys(data).forEach((key)=>{
const item={
x:key,
y:data [key]
}
arr.push(item)
})
转换结果:
网友评论