let rawData = {
One:[{month:1,count:10},{month:12,count:2}],
Two::[{month:1,count:14},{month:3,count:23}],
Three:[],
Four::[{month:1,count:10}],
};
// 拆分成想要的數據 ysdList熙兔、lydList悲伶、tzdList、bfdList都會包含12個對象住涉,12個月份麸锉,而且對象沒有順序,沒有的count賦值為0
// ysdList:[10,0,0,0,0,0,0,0,0,0,0,2]
// lydList:[14,0,23,0,0,0,0,0,0,0,0,0]
// tzdList:[0,0,0,0,0,0,0,0,0,0,0,0]
// bfdList:[10,0,0,0,0,0,0,0,0,0,0,0]
let targetData = {
ysdList: [],
lydList: [],
tzdList: [],
bfdList: [],
};
for (let i = 1; i < 13; i++) {
let ss = [];
if (!rawData.One) {
ss = [];
} else {
ss = rawData.One.filter((item) => {
return item.month == i;
});
}
if (ss.length <= 0) {
targetData.ysdList.push("0");
} else {
targetData.ysdList.push(ss[0].count + "");
}
let aa = [];
if (!rawData.Two) {
aa = [];
} else {
aa = rawData.Two.filter((item) => {
return item.month == i;
});
}
if (aa.length <= 0) {
targetData.lydList.push("0");
} else {
targetData.lydList.push(aa[0].count + "");
}
let bb = [];
if (!rawData.Three) {
bb = [];
} else {
bb = rawData.Three.filter((item) => {
return item.month == i;
});
}
if (bb.length <= 0) {
targetData.tzdList.push("0");
} else {
targetData.tzdList.push(bb[0].count + "");
}
let cc = [];
if (!rawData.Four) {
cc = [];
} else {
cc = rawData.Four.filter((item) => {
return item.month == i;
});
}
if (cc.length <= 0) {
targetData.bfdList.push("0");
} else {
targetData.bfdList.push(cc[0].count + "");
}
}
this.picList = { ...targetData };
月份數據統(tǒng)計,后臺返回數據拆分12個對象啼辣,代表12個月份啊研,而且月份沒有順序,沒有的數據的賦值為0
最后編輯于 :
?著作權歸作者所有,轉載或內容合作請聯系作者
- 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來柿赊,“玉大人俩功,你說我怎么就攤上這事∨錾” “怎么了诡蜓?”我有些...
- 正文 為了忘掉前任豺谈,我火速辦了婚禮,結果婚禮上蘸朋,老公的妹妹穿的比我還像新娘核无。我一直安慰自己扣唱,他們只是感情好藕坯,可當我...
- 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著噪沙,像睡著了一般炼彪。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上正歼,一...
- 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼另萤!你這毒婦竟也來了湃密?” 一聲冷哼從身側響起诅挑,我...
- 正文 年R本政府宣布,位于F島的核電站肛鹏,受9級特大地震影響,放射性物質發(fā)生泄漏恩沛。R本人自食惡果不足惜在扰,卻給世界環(huán)境...
- 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望雷客。 院中可真熱鬧芒珠,春花似錦、人聲如沸搅裙。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽部逮。三九已至娜汁,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間兄朋,已是汗流浹背掐禁。 一陣腳步聲響...
推薦閱讀更多精彩內容
- 創(chuàng)聯兼職9月信息統(tǒng)計表 銀行/名企 促銷 酒店 派單 單天活動 其他 農行七賢支行: 4人 (實習證明) : 黃臺...
- 咱們的五月份數據出來了彼绷,在聊這個話題之前,我們回顧下茴迁,小號記憶承載3的5月17號的文章:怎么看我們四月份的數據[h...
- 日前寄悯,數據庫流行度DB-Engines公布了三月份數據庫榜單,Oracle堕义、MySQL和SQL Server以及穩(wěn)...