将对象转换为数组
Posted spiral-up
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将对象转换为数组相关的知识,希望对你有一定的参考价值。
拿到[{时间:数值},{时间:数值},....]这样的数组,提取出其中的时间和数值:
for (let key in curentData){
arrTime.push(key);
arrValue.push(curentData[key]);
}
for(i=1;i<=arrValue.length;i++){
curentValue.push([arrTime[i],arrValue[i]]);
}
以上是关于将对象转换为数组的主要内容,如果未能解决你的问题,请参考以下文章