标签:提取 对象 数值 时间 value val key 取出 length
拿到[{时间:数值},{时间:数值},....]这样的数组,提取出其中的时间和数值:
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]]);
}
标签:提取 对象 数值 时间 value val key 取出 length
原文地址:https://www.cnblogs.com/spiral-up/p/11914670.html