JS的for循环

http://img3.mukewang.com/5a1e1bab0001a57009620217.jpg

我想做个echarts的柱状图 但是不知道怎么算图中的数据 我想请问下怎么用js的for循环语句来算出整个代码中的startTime endTime和downTime?

乱码者
浏览 1968回答 3
3回答

慕勒0069038

//data 就是 你这个数据var result = eval("("+data+")");$.each(result.result, function(idx, obj) {    console.log(obj.startTime);    console.log(obj.endTime);});

冰山点水

obj = json对象.result.DowntimeTaskfor(var i in obj){    console.log(obj[i].startTime, obj[i].endTime)    // 取到数据之后,做相应的操作即可} 

爱学习的小渣渣呢

var startt = []; var endt = []; for(var i = 0;i<data.result.DowntimeTask.length;i++){ startt.push(data.result.DowntimeTask[i].startTime); endt.push(data.result.DowntimeTask[i].endTime); }
打开App,查看更多内容
随时随地看视频慕课网APP